Skip to content

Commit d71ca99

Browse files
committed
fix(app2): errorsmodal closed by default
1 parent fccdff2 commit d71ca99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app2/src/lib/stores/ui.svelte.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ class UiStore {
22
// TODO: make Option<"wallet"|"settings"|"errors">
33
walletModalOpen: boolean = $state(false)
44
settingsModalOpen: boolean = $state(false)
5-
errorsModalOpen: boolean = $state(true)
5+
errorsModalOpen: boolean = $state(false)
66

77
private closeAllModals() {
88
this.walletModalOpen = false

0 commit comments

Comments
 (0)