Skip to content

Commit 3972725

Browse files
committed
Fix nullable
1 parent 70ef480 commit 3972725

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/layout/createProject.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
2121
let showCustomId = $state(false);
2222
let projectsLimited = $derived(
23-
$currentPlan.projects > 0 && projects && projects >= $currentPlan?.projects
23+
$currentPlan?.projects > 0 && projects && projects >= $currentPlan?.projects
2424
);
2525
</script>
2626

0 commit comments

Comments
 (0)