fix: migrate atoms to normal functions

This commit is contained in:
2026-03-06 23:16:19 +01:00
parent f7034116a3
commit 630363af1f
5 changed files with 47 additions and 91 deletions

View File

@@ -210,3 +210,16 @@ export interface ParsedFrequencyResult {
message: string | null
result: ParsedResultType
}
export interface PomodoroAtom {
show: boolean
selectedHabitId: string | null
autoStart: boolean
minimized: boolean
}
export interface BrowserSettings {
expandedHabits: boolean
expandedTasks: boolean
expandedWishlist: boolean
}