Skip to content

Commit

Permalink
Fix unable to add new inboxes
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachatoo committed Mar 6, 2024
1 parent d019908 commit ed49061
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/settings-tab/SettingsTab.svelte
Expand Up @@ -34,9 +34,11 @@
<Button on:click={addInbox}><Icon name="plus" /></Button>
</div>

{#each $store.inboxes as inbox, index}
<InboxSettings {inbox} {index} {app} {markdownFiles} {folders} />
{/each}
<div>
{#each $store.inboxes as inbox, index}
<InboxSettings {inbox} {index} {app} {markdownFiles} {folders} />
{/each}
</div>

<style>
.inbox-setting-heading-with-button {
Expand Down

0 comments on commit ed49061

Please sign in to comment.