File tree Expand file tree Collapse file tree
infrastructure/eid-wallet
src/routes/(app)/settings Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://schema.tauri.app/config/2" ,
33 "productName" : " eID for W3DS" ,
4- "version" : " 0.6 .0" ,
4+ "version" : " 0.7 .0" ,
55 "identifier" : " foundation.metastate.eid-wallet" ,
66 "build" : {
77 "beforeDevCommand" : " pnpm dev" ,
2828 "active" : true ,
2929 "targets" : " all" ,
3030 "android" : {
31- "versionCode" : 23
31+ "versionCode" : 24
3232 },
3333 "icon" : [
3434 " icons/32x32.png" ,
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { goto } from "$app/navigation";
33import { SettingsNavigationBtn } from " $lib/fragments" ;
44import type { GlobalState } from " $lib/global" ;
55import { runtime } from " $lib/global/runtime.svelte" ;
6+ import { clearAllNotifications } from " $lib/stores/notifications" ;
67import { BottomSheet , ButtonAction } from " $lib/ui" ;
78import {
89 Key01Icon ,
@@ -40,6 +41,7 @@ function confirmDelete() {
4041}
4142
4243async function nukeWallet() {
44+ clearAllNotifications ();
4345 const newGlobalState = await globalState .reset ();
4446 setGlobalState (newGlobalState );
4547 globalState = newGlobalState ;
You can’t perform that action at this time.
0 commit comments