Skip to content

Commit 0ac3086

Browse files
committed
fix: fix type error
1 parent f85ab19 commit 0ac3086

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/results/task/[taskId].tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const Result = () => {
5252
) : isLoading || task === undefined ? (
5353
<CenterLoader />
5454
) : (
55-
<ResultTaskCard poll collapsedByDefault={false} task={{ ...task, id: taskId }} />
55+
<ResultTaskCard collapsedByDefault={false} task={{ ...task, id: taskId }} />
5656
)}
5757
</Container>
5858
</Layout>

0 commit comments

Comments
 (0)