Skip to content

Commit 4b48202

Browse files
committed
fix: invitation code wrap
Signed-off-by: Innei <i@innei.in>
1 parent 250d1b5 commit 4b48202

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/renderer/src/modules/settings/tabs/invitations.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@ export const SettingInvitations = () => {
8787
<TableRow key={row.code}>
8888
<TableCell align="center" size="sm">
8989
<div className="group relative flex items-center justify-center gap-2 font-mono">
90-
<span>{row.code}</span>
90+
<span className="shrink-0">
91+
{row.code}
92+
</span>
9193
<CopyButton
9294
value={row.code}
9395
className="absolute -right-6 p-1 opacity-0 group-hover:opacity-100 [&_i]:size-3"

0 commit comments

Comments
 (0)