Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
116 changes: 58 additions & 58 deletions src/components/balances/AssetsTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,73 +115,73 @@ const AssetsTable = (): ReactElement => {
const rows = loading
? skeletonRows
: balances.map((item) => {
const isNative = isNativeToken(item.tokenInfo)

return {
key: item.tokenInfo.address,
collapsed: item.tokenInfo.address === removingToken,
cells: {
asset: {
rawValue: item.tokenInfo.name,
collapsed: item.tokenInfo.address === removingToken,
content: (
<div className={css.token}>
<TokenIcon logoUri={item.tokenInfo.logoUri} tokenSymbol={item.tokenInfo.symbol} />

<Typography>{item.tokenInfo.name}</Typography>

{!isNative && <TokenExplorerLink address={item.tokenInfo.address} />}
</div>
),
},
balance: {
rawValue: Number(item.balance) / 10 ** item.tokenInfo.decimals,
collapsed: item.tokenInfo.address === removingToken,
content: (
<TokenAmount
value={item.balance}
decimals={item.tokenInfo.decimals}
tokenSymbol={item.tokenInfo.symbol}
/>
),
},
actions: {
rawValue: '',
sticky: true,
collapsed: item.tokenInfo.address === removingToken,
content: (
<Box display="flex" flexDirection="row" gap={1} alignItems="center">
<>
<SendButton tokenInfo={item.tokenInfo} onClick={() => onSendClick(item.tokenInfo.address)} />

{item.custom && (
<Tooltip title="Hide asset (you will have to re-add it)" arrow disableInteractive>
<IconButton
disabled={removingToken !== undefined}
size="medium"
onClick={() => removeToken(item.tokenInfo.address)}
>
<VisibilityOutlined fontSize="small" />
</IconButton>
</Tooltip>
)}
</>
</Box>
),
},
const isNative = isNativeToken(item.tokenInfo)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
const isNative = isNativeToken(item.tokenInfo)
const isNative = isNativeToken(item.tokenInfo)

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
const isNative = isNativeToken(item.tokenInfo)
const isNative = isNativeToken(item.tokenInfo)


return {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
return {
return {

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
return {
return {

key: item.tokenInfo.address,
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
key: item.tokenInfo.address,
key: item.tokenInfo.address,

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
key: item.tokenInfo.address,
key: item.tokenInfo.address,

collapsed: item.tokenInfo.address === removingToken,
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace ········ with ·········· prettier/prettier

Fix available:

Suggested change
collapsed: item.tokenInfo.address === removingToken,
collapsed: item.tokenInfo.address === removingToken,

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace ········ with ·········· prettier/prettier

Fix available:

Suggested change
collapsed: item.tokenInfo.address === removingToken,
collapsed: item.tokenInfo.address === removingToken,

cells: {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
cells: {
cells: {

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
cells: {
cells: {

asset: {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
asset: {
asset: {

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
asset: {
asset: {

rawValue: item.tokenInfo.name,
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
rawValue: item.tokenInfo.name,
rawValue: item.tokenInfo.name,

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
rawValue: item.tokenInfo.name,
rawValue: item.tokenInfo.name,

collapsed: item.tokenInfo.address === removingToken,
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
collapsed: item.tokenInfo.address === removingToken,
collapsed: item.tokenInfo.address === removingToken,

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
collapsed: item.tokenInfo.address === removingToken,
collapsed: item.tokenInfo.address === removingToken,

content: (
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
content: (
content: (

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
content: (
content: (

<div className={css.token}>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
<div className={css.token}>
<div className={css.token}>

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
<div className={css.token}>
<div className={css.token}>

<TokenIcon logoUri={item.tokenInfo.logoUri} tokenSymbol={item.tokenInfo.symbol} />
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace ················ with ·················· prettier/prettier

Fix available:

Suggested change
<TokenIcon logoUri={item.tokenInfo.logoUri} tokenSymbol={item.tokenInfo.symbol} />
<TokenIcon logoUri={item.tokenInfo.logoUri} tokenSymbol={item.tokenInfo.symbol} />

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace ················ with ·················· prettier/prettier

Fix available:

Suggested change
<TokenIcon logoUri={item.tokenInfo.logoUri} tokenSymbol={item.tokenInfo.symbol} />
<TokenIcon logoUri={item.tokenInfo.logoUri} tokenSymbol={item.tokenInfo.symbol} />


<Typography>{item.tokenInfo.name}</Typography>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
<Typography>{item.tokenInfo.name}</Typography>
<Typography>{item.tokenInfo.name}</Typography>

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
<Typography>{item.tokenInfo.name}</Typography>
<Typography>{item.tokenInfo.name}</Typography>


{!isNative && <TokenExplorerLink address={item.tokenInfo.address} />}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
{!isNative && <TokenExplorerLink address={item.tokenInfo.address} />}
{!isNative && <TokenExplorerLink address={item.tokenInfo.address} />}

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
{!isNative && <TokenExplorerLink address={item.tokenInfo.address} />}
{!isNative && <TokenExplorerLink address={item.tokenInfo.address} />}

</div>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace ·············· with ················ prettier/prettier

Fix available:

Suggested change
</div>
</div>

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace ·············· with ················ prettier/prettier

Fix available:

Suggested change
</div>
</div>

),
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
),
),

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
),
),

},
}
})
balance: {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
balance: {
balance: {

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
balance: {
balance: {

rawValue: Number(item.balance) / 10 ** item.tokenInfo.decimals,
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
rawValue: Number(item.balance) / 10 ** item.tokenInfo.decimals,
rawValue: Number(item.balance) / 10 ** item.tokenInfo.decimals,

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
rawValue: Number(item.balance) / 10 ** item.tokenInfo.decimals,
rawValue: Number(item.balance) / 10 ** item.tokenInfo.decimals,

collapsed: item.tokenInfo.address === removingToken,
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
collapsed: item.tokenInfo.address === removingToken,
collapsed: item.tokenInfo.address === removingToken,

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
collapsed: item.tokenInfo.address === removingToken,
collapsed: item.tokenInfo.address === removingToken,

content: (
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
content: (
content: (

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
content: (
content: (

<TokenAmount
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
<TokenAmount
<TokenAmount

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
<TokenAmount
<TokenAmount

value={item.balance}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
value={item.balance}
value={item.balance}

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
value={item.balance}
value={item.balance}

decimals={item.tokenInfo.decimals}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
decimals={item.tokenInfo.decimals}
decimals={item.tokenInfo.decimals}

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
decimals={item.tokenInfo.decimals}
decimals={item.tokenInfo.decimals}

tokenSymbol={item.tokenInfo.symbol}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace ················ with ·················· prettier/prettier

Fix available:

Suggested change
tokenSymbol={item.tokenInfo.symbol}
tokenSymbol={item.tokenInfo.symbol}

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace ················ with ·················· prettier/prettier

Fix available:

Suggested change
tokenSymbol={item.tokenInfo.symbol}
tokenSymbol={item.tokenInfo.symbol}

/>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
/>
/>

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
/>
/>

),
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
),
),

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
),
),

},
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace ·········· with ············ prettier/prettier

Fix available:

Suggested change
},
},

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace ·········· with ············ prettier/prettier

Fix available:

Suggested change
},
},

actions: {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
actions: {
actions: {

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
actions: {
actions: {

rawValue: '',
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
rawValue: '',
rawValue: '',

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
rawValue: '',
rawValue: '',

sticky: true,
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
sticky: true,
sticky: true,

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
sticky: true,
sticky: true,

collapsed: item.tokenInfo.address === removingToken,
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
collapsed: item.tokenInfo.address === removingToken,
collapsed: item.tokenInfo.address === removingToken,

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
collapsed: item.tokenInfo.address === removingToken,
collapsed: item.tokenInfo.address === removingToken,

content: (
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
content: (
content: (

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
content: (
content: (

<Box display="flex" flexDirection="row" gap={1} alignItems="center">
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
<Box display="flex" flexDirection="row" gap={1} alignItems="center">
<Box display="flex" flexDirection="row" gap={1} alignItems="center">

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
<Box display="flex" flexDirection="row" gap={1} alignItems="center">
<Box display="flex" flexDirection="row" gap={1} alignItems="center">

<>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace ················ with ·················· prettier/prettier

Fix available:

Suggested change
<>
<>

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace ················ with ·················· prettier/prettier

Fix available:

Suggested change
<>
<>

<SendButton tokenInfo={item.tokenInfo} onClick={() => onSendClick(item.tokenInfo.address)} />
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
<SendButton tokenInfo={item.tokenInfo} onClick={() => onSendClick(item.tokenInfo.address)} />
<SendButton tokenInfo={item.tokenInfo} onClick={() => onSendClick(item.tokenInfo.address)} />

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
<SendButton tokenInfo={item.tokenInfo} onClick={() => onSendClick(item.tokenInfo.address)} />
<SendButton tokenInfo={item.tokenInfo} onClick={() => onSendClick(item.tokenInfo.address)} />


{item.custom && (
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
{item.custom && (
{item.custom && (

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
{item.custom && (
{item.custom && (

<Tooltip title="Hide asset (you will have to re-add it)" arrow disableInteractive>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
<Tooltip title="Hide asset (you will have to re-add it)" arrow disableInteractive>
<Tooltip title="Hide asset (you will have to re-add it)" arrow disableInteractive>

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
<Tooltip title="Hide asset (you will have to re-add it)" arrow disableInteractive>
<Tooltip title="Hide asset (you will have to re-add it)" arrow disableInteractive>

<IconButton
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
<IconButton
<IconButton

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
<IconButton
<IconButton

disabled={removingToken !== undefined}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
disabled={removingToken !== undefined}
disabled={removingToken !== undefined}

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
disabled={removingToken !== undefined}
disabled={removingToken !== undefined}

size="medium"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
size="medium"
size="medium"

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
size="medium"
size="medium"

onClick={() => removeToken(item.tokenInfo.address)}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
onClick={() => removeToken(item.tokenInfo.address)}
onClick={() => removeToken(item.tokenInfo.address)}

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
onClick={() => removeToken(item.tokenInfo.address)}
onClick={() => removeToken(item.tokenInfo.address)}

>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
>
>

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
>
>

<VisibilityOutlined fontSize="small" />
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
<VisibilityOutlined fontSize="small" />
<VisibilityOutlined fontSize="small" />

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
<VisibilityOutlined fontSize="small" />
<VisibilityOutlined fontSize="small" />

</IconButton>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace ······················ with ························ prettier/prettier

Fix available:

Suggested change
</IconButton>
</IconButton>

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace ······················ with ························ prettier/prettier

Fix available:

Suggested change
</IconButton>
</IconButton>

</Tooltip>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
</Tooltip>
</Tooltip>

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
</Tooltip>
</Tooltip>

)}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
)}
)}

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
)}
)}

</>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace ················ with ·················· prettier/prettier

Fix available:

Suggested change
</>
</>

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace ················ with ·················· prettier/prettier

Fix available:

Suggested change
</>
</>

</Box>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
</Box>
</Box>

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
</Box>
</Box>

),
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
),
),

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
),
),

},
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
},
},

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
},
},

},
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
},
},

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
},
},

}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
}
}

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
}
}

})
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
})
})

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert ·· prettier/prettier

Fix available:

Suggested change
})
})


return (
<>
<div className={css.container}>
<EnhancedTable rows={rows} headCells={headCells}>
<TableRow>
<TableCell colSpan={headCells.length - 1}>
<TableCell variant="body" colSpan={headCells.length - 1}>
<AddTokenOrCollectible />
</TableCell>
<TableCell />
<TableCell variant="body" />
</TableRow>
</EnhancedTable>
</div>
Expand Down
Loading