fix: Make active prop optional on Link.svelte (#487)

This commit is contained in:
Lachlan Collins
2023-11-14 05:43:21 +11:00
committed by GitHub
parent f2bc8a9a25
commit ca44d69b43

View File

@@ -1,5 +1,6 @@
<script> <script lang="ts">
export let path, active; export let path: string;
export let active = false;
</script> </script>
<li> <li>