Skip to content

Commit 971441a

Browse files
Merge pull request #10538 from gitbutlerapp/fix-todo-reactivity
Fix code that was using svelte4 syntax
2 parents 4367a49 + 4f9820d commit 971441a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

apps/desktop/src/components/codegen/CodegenStatusIcon.svelte

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<script lang="ts">
2-
export let status: 'pending' | 'in_progress' | 'completed';
2+
type Props = {
3+
status: 'pending' | 'in_progress' | 'completed';
4+
};
5+
const { status }: Props = $props();
36
</script>
47

58
<div

0 commit comments

Comments
 (0)