Skip to content

Commit 1734133

Browse files
committed
fix: app address overflow
1 parent 50eeba9 commit 1734133

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

src/modules/deals/dealsTable/columns.tsx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,12 @@ export const columns: ColumnDef<Deal>[] = [
3636
cell: ({ row }) => {
3737
const appAddress = row.original.app.address;
3838
return (
39-
<div className="w-36">
40-
<CopyButton
41-
displayText={truncateAddress(appAddress, {
42-
startLen: 8,
43-
})}
44-
textToCopy={appAddress}
45-
/>
46-
</div>
39+
<CopyButton
40+
displayText={truncateAddress(appAddress, {
41+
startLen: 8,
42+
})}
43+
textToCopy={appAddress}
44+
/>
4745
);
4846
},
4947
},

0 commit comments

Comments
 (0)