Skip to content

Commit

Permalink
fix: Make active prop optional on Link.svelte (#487)
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins authored Nov 13, 2023
1 parent f2bc8a9 commit ca44d69
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/lib/components/layout/Link.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<script>
export let path, active;
<script lang="ts">
export let path: string;
export let active = false;
</script>

<li>
Expand Down

0 comments on commit ca44d69

Please sign in to comment.