chore: linting

This commit is contained in:
zhom
2026-03-28 20:55:10 +04:00
parent 248927ae6f
commit d0e3e15fd3
61 changed files with 1179 additions and 835 deletions
+3 -1
View File
@@ -94,7 +94,9 @@ export function CustomThemeProvider({ children }: CustomThemeProviderProps) {
};
// Apply after a short delay to ensure CSS has loaded
setTimeout(reapplyCustomTheme, 100);
setTimeout(() => {
void reapplyCustomTheme();
}, 100);
}
}, [isLoading, _mounted]);