Skip to content

Commit

Permalink
fix: undismissible modal
Browse files Browse the repository at this point in the history
  • Loading branch information
ArmanNik committed Jan 22, 2025
1 parent 3114ccc commit 9bf8175
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v2/pink-sb/src/lib/Modal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<header>
<Stack gap="xl" justifyContent="space-between" direction="row" alignItems="center">
<Title size="s">{title}</Title>
{#if !dismissible}
{#if dismissible}
<Button icon variant="ghost" size="s" on:click={() => (open = false)}>
<Icon icon={IconX} />
</Button>
Expand Down

0 comments on commit 9bf8175

Please sign in to comment.