diff --git a/frontend/src/lib/components/DashboardMentions.svelte b/frontend/src/lib/components/DashboardMentions.svelte
index 2deaddda..8a1d1e62 100644
--- a/frontend/src/lib/components/DashboardMentions.svelte
+++ b/frontend/src/lib/components/DashboardMentions.svelte
@@ -24,26 +24,28 @@ let { mentions }: Props = $props();
{m.dashboard_notifications_heading()}
- {#each mentions as mention (mention.id)}
-
- {#if mention.documentId}
-
{mention.actorName ?? ''}
-
- {mention.type === 'MENTION'
- ? m.dashboard_notification_mentioned()
- : m.dashboard_notification_replied()}
-
- {:else}
-
{mention.actorName ?? ''}
- {/if}
-
- {/each}
+
+ {#each mentions as mention (mention.id)}
+
+ {#if mention.documentId}
+
{mention.actorName ?? ''}
+
+ {mention.type === 'MENTION'
+ ? m.dashboard_notification_mentioned()
+ : m.dashboard_notification_replied()}
+
+ {:else}
+
{mention.actorName ?? ''}
+ {/if}
+
+ {/each}
+