drop minimum sticker count to 1 (#4057)
I currently have a sticker pack on Telegram which I cannot port to Signal because it has only two stickers. I don't see why we should arbitrarily require four stickers. I could also imagine a sticker pack with just one sticker in it, if that sticker is really good.
This commit is contained in:
parent
95c9e7a6d4
commit
e3f362e119
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ export const dismissToast = createAction<void>('stickers/dismissToast');
|
|||
export const resetStatus = createAction<void>('stickers/resetStatus');
|
||||
export const reset = createAction<void>('stickers/reset');
|
||||
|
||||
export const minStickers = 4;
|
||||
export const minStickers = 1;
|
||||
export const maxStickers = 200;
|
||||
export const maxByteSize = 100 * 1024;
|
||||
|
||||
|
|
Loading…
Reference in a new issue