Remove localization from stickers

This commit is contained in:
Rafael 2022-01-05 17:25:36 -03:00 committed by infinite-persistence
parent 78fde47577
commit fc58dc5ef4

View file

@ -3,7 +3,7 @@
const buildCDNUrl = (path: string) => `https://static.odycdn.com/stickers/${path}`;
const buildSticker = (name: string, path: string, price?: number) => ({
name: __(`:${name}:`),
name: `:${name}:`,
url: buildCDNUrl(path),
price: price,
});