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:
iomintz 2020-05-05 16:33:12 -05:00 committed by GitHub
parent 95c9e7a6d4
commit e3f362e119
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;