diff options
author | Miodec <[email protected]> | 2024-11-05 13:23:41 +0100 |
---|---|---|
committer | Miodec <[email protected]> | 2024-11-05 13:23:41 +0100 |
commit | 3b792e87588d97648c9dc810ef87f4028d3df251 (patch) | |
tree | 7b4cbd8304d305fd2ede1d9e04878cbe88800cf1 | |
parent | fe2f43dedf86951e3bc77cc108e6c8cb9418b5e6 (diff) | |
download | monkeytype-3b792e87588d97648c9dc810ef87f4028d3df251.tar.gz monkeytype-3b792e87588d97648c9dc810ef87f4028d3df251.zip |
chore: missing custom theme increase on frontend side
-rw-r--r-- | frontend/src/ts/db.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/ts/db.ts b/frontend/src/ts/db.ts index 18f9dabd2..bc5a619b7 100644 --- a/frontend/src/ts/db.ts +++ b/frontend/src/ts/db.ts @@ -422,7 +422,7 @@ export async function addCustomTheme( dbSnapshot.customThemes = []; } - if (dbSnapshot.customThemes.length >= 10) { + if (dbSnapshot.customThemes.length >= 20) { Notifications.add("Too many custom themes!", 0); return false; } |