fix state type

This commit is contained in:
Alex Holliday
2026-02-18 20:04:53 +00:00
parent 248482a406
commit bbb2da3935
+2 -1
View File
@@ -1,3 +1,4 @@
import type { ChartType } from "@/Features/UI/uiSlice";
import type { User } from "./User";
export interface AuthState {
@@ -37,7 +38,7 @@ export interface UIState {
distributedUptimeEnabled: boolean;
language: string;
starPromptOpen: boolean;
chartType: string;
chartType: ChartType;
}
export interface RootState {