Task attempt f8a712e0-423c-4f72-b6e6-bbdac2088c19 - Final changes

This commit is contained in:
Louis Knight-Webb
2025-06-19 19:11:48 -04:00
parent 47da9f6318
commit 75c2251133
6 changed files with 237 additions and 1 deletions

View File

@@ -3,7 +3,7 @@
export type ApiResponse<T> = { success: boolean, data: T | null, message: string | null, };
export type Config = { theme: ThemeMode, executor: ExecutorConfig, };
export type Config = { theme: ThemeMode, executor: ExecutorConfig, disclaimer_acknowledged: boolean, };
export type ThemeMode = "light" | "dark" | "system";