Skip to content

Commit

Permalink
next: fix card select showing [object object]
Browse files Browse the repository at this point in the history
  • Loading branch information
JanTrichter committed Nov 1, 2024
1 parent 6e720aa commit 61cb355
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
let framework = $state("");
const selectedFramework = $derived(
frameworks.find((f) => f.value === framework) ?? "Select a framework"
frameworks.find((f) => f.value === framework)?.label ?? "Select a framework"
);
</script>

Expand Down

0 comments on commit 61cb355

Please sign in to comment.