Handle invalid bunker url, update synced stores

This commit is contained in:
Jon Staab
2025-07-15 11:06:47 -07:00
parent e2a0672ca5
commit 6f6bb508db
6 changed files with 61 additions and 19 deletions
+6 -2
View File
@@ -1,3 +1,7 @@
import {synced} from "@welshman/store"
import {synced, localStorageProvider} from "@welshman/store"
export const theme = synced<string>("theme", "dark")
export const theme = synced({
key: "theme",
defaultValue: "dark",
storage: localStorageProvider,
})