Skip to content

Commit d8cf8a9

Browse files
committed
fix: added state to the required variable to correctly reflect updated state.
1 parent f5a5716 commit d8cf8a9

File tree

1 file changed

+3
-1
lines changed
  • infrastructure/eid-wallet/src/routes/(auth)/verify

1 file changed

+3
-1
lines changed

infrastructure/eid-wallet/src/routes/(auth)/verify/+page.svelte

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,9 @@ function watchEventStream(id: string) {
135135
};
136136
}
137137
138-
let handleContinue: () => Promise<void>;
138+
let handleContinue: () => Promise<void> = $state(() => {
139+
return Promise.resolve();
140+
});
139141
140142
onMount(() => {
141143
globalState = getContext<() => GlobalState>("globalState")();

0 commit comments

Comments
 (0)