Skip to content

Commit

Permalink
fix(ui): πŸ› fix the logical error in the callout title component
Browse files Browse the repository at this point in the history
βœ… Closes: #83
  • Loading branch information
brklntmhwk committed Oct 24, 2024
1 parent fa751bf commit b1c91e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/elements/Callout/CalloutTitle.astro
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const calloutTitle: string | undefined = await Astro.slots.render('default');
type="checkbox"
class={calloutToggleCheck}
id={`callout-toggle-check-${dataCalloutType}-${uniqueId}`}
checked={isExpanded === true ?? false}
checked={isExpanded}
/>
</>
) : (
Expand Down

0 comments on commit b1c91e2

Please sign in to comment.