diff --git a/src/routes/(app)/settings/SettingsAccountSections.svelte b/src/routes/(app)/settings/SettingsAccountSections.svelte index 3659dac..49ab563 100644 --- a/src/routes/(app)/settings/SettingsAccountSections.svelte +++ b/src/routes/(app)/settings/SettingsAccountSections.svelte @@ -53,16 +53,18 @@ {/key} {/if} - - {#each remainingAccounts as account (account.id_key)} -
- switchToAccount(account)}> -
- {account.profile.signee.payload.name} -
-
- {/each} -
+ {#if remainingAccounts.length > 0} + + {#each remainingAccounts as account (account.id_key)} +
+ switchToAccount(account)}> +
+ {account.profile.signee.payload.name} +
+
+ {/each} +
+ {/if} {/if}