Increase max length of custom themes to 32

This commit is contained in:
schroda
2026-01-02 22:40:03 +01:00
parent 4eaa701851
commit ce4eb98cbc
2 changed files with 2 additions and 1 deletions

View File

@@ -179,7 +179,7 @@ export const ThemeCreationDialog = ({
onChange={(e) => {
const name = e.target.value.trim();
const isValidLength = name.length <= 16;
const isValidLength = name.length <= 32;
const isUnique = isThemeNameUnique(name, customThemes);
setInvalidName(!isValidLength || !isUnique);