Skip to content

Commit

Permalink
docs: fix card select showing [object object] (#1425)
Browse files Browse the repository at this point in the history
  • Loading branch information
JanTrichter authored Nov 1, 2024
1 parent 6e720aa commit c6c25b1
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 c6c25b1

Please sign in to comment.