Skip to content

Commit a58792f

Browse files
committed
♻️ Fix type annotation (#1619)
1 parent 03da329 commit a58792f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/components/SubmissionStatus/UpdatingModal.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
modalStatus = modal.isOpen;
2828
});
2929
30-
let selectedTaskResult: TaskResult | null = $state(null);
30+
let selectedTaskResult = $state<TaskResult | null>(null);
3131
let selectedSubmissionStatus: string = $state('');
3232
3333
export function openModal(taskResult: TaskResult): void {

0 commit comments

Comments
 (0)