fix: modal not showing.

This commit is contained in:
Darshan
2025-02-03 18:23:29 +05:30
parent c2fb335f76
commit ea080b5a6b
+14 -2
View File
@@ -236,8 +236,20 @@
<MobileFeedbackModal />
</svelte:fragment>
</DropList>
<Button.Button variant="secondary" size="s"
><span>Support</span></Button.Button>
<DropList show={$showSupportModal} scrollable>
<Button.Button
variant="secondary"
size="s"
on:click={() => ($showSupportModal = true)}>
<span>Support</span>
<svelte:fragment slot="other">
<MobileSupportModal bind:show={$showSupportModal}
></MobileSupportModal>
</svelte:fragment>
</Button.Button>
</DropList>
</Layout.Stack>
</div>
</div>