We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50eeba9 commit 1734133Copy full SHA for 1734133
src/modules/deals/dealsTable/columns.tsx
@@ -36,14 +36,12 @@ export const columns: ColumnDef<Deal>[] = [
36
cell: ({ row }) => {
37
const appAddress = row.original.app.address;
38
return (
39
- <div className="w-36">
40
- <CopyButton
41
- displayText={truncateAddress(appAddress, {
42
- startLen: 8,
43
- })}
44
- textToCopy={appAddress}
45
- />
46
- </div>
+ <CopyButton
+ displayText={truncateAddress(appAddress, {
+ startLen: 8,
+ })}
+ textToCopy={appAddress}
+ />
47
);
48
},
49
0 commit comments