chore: build admin
Frontend Admin - EAS Build / build (push) Failing after 12m33s

This commit is contained in:
2026-06-20 15:56:27 +02:00
parent 9ec83e3987
commit 26c0c169a3
4 changed files with 59 additions and 2 deletions
@@ -11,6 +11,7 @@ interface ThemeContextType {
mode: ThemeMode;
toggleTheme: () => void;
isDark: boolean;
refreshColors: () => Promise<void>;
}
const STORAGE_KEY = "@theme_mode";
@@ -71,6 +72,7 @@ export function ThemeProvider({ children }: { children: ReactNode }) {
mode,
toggleTheme,
isDark: mode === "dark",
refreshColors: fetchAdminColors,
};
return (