Update default theme to light and fix data source subtitle
All checks were successful
Deploy HiHala Dashboard / deploy (push) Successful in 7s

Default to light theme instead of system preference, and update
dashboard subtitle to reflect VivaTicket as the data source.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
fahed
2026-03-26 11:03:17 +03:00
parent 7d919979cc
commit 802ff28754
3 changed files with 4 additions and 4 deletions

View File

@@ -46,9 +46,9 @@ function App() {
const [dataSource, setDataSource] = useState<string>('museums');
const [theme, setTheme] = useState<string>(() => {
if (typeof window !== 'undefined') {
return localStorage.getItem('hihala_theme') || 'system';
return localStorage.getItem('hihala_theme') || 'light';
}
return 'system';
return 'light';
});
useEffect(() => {