We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fb2a92 commit 694a0f0Copy full SHA for 694a0f0
src/routes/workbooks/[slug]/+page.svelte
@@ -75,7 +75,7 @@
75
return getContestIdFrom(taskId) + '-' + taskId;
76
};
77
78
- let updatingModal: UpdatingModal | null = $state(null);
+ let updatingModal = $state<UpdatingModal | null>(null);
79
80
// HACK: clickを1回実行するとactionsが2回実行されてしまう。原因と修正方法が分かっていない。
81
function handleClick(taskId: string) {
0 commit comments