Skip to content

Commit a0e540a

Browse files
committed
Fix email wrapping in user list
Closes #1366
1 parent 7881f41 commit a0e540a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/routes/(authenticated)/users/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@
7676
{user.N}
7777
</a>
7878
</p>
79-
<p class="text-sm overflow-hidden">
80-
{user.E?.replace('@', '\u200b@')}
79+
<p class="text-sm wrap-break-word">
80+
{user.E}
8181
</p>
8282
</div>
8383
{/snippet}

0 commit comments

Comments
 (0)