snug: change maximum note character length to 8192

This commit is contained in:
vib 2022-08-27 13:46:39 +03:00
parent a797b0e75d
commit 472aa0ccba
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
export const MAX_NOTE_TEXT_LENGTH = 3000;
export const MAX_NOTE_TEXT_LENGTH = 8192;
export const SECOND = 1000;
export const MINUTE = 60 * SECOND;