Skip to content

Commit

Permalink
fix(tangle-dapp): Network name & token fits in better
Browse files Browse the repository at this point in the history
  • Loading branch information
yurixander committed Oct 4, 2024
1 parent 13c6d2c commit a0b7bfb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions apps/tangle-dapp/containers/LsMyProtocolsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const COLUMN_HELPER = createColumnHelper<LsMyProtocolRow>();

const PROTOCOL_COLUMNS = [
COLUMN_HELPER.accessor('name', {
header: () => 'Token',
header: () => 'Network & Token',
cell: (props) => (
<TableCellWrapper className="pl-3">
<div className="flex items-center gap-2">
Expand All @@ -57,7 +57,7 @@ const PROTOCOL_COLUMNS = [
/>

<Typography variant="h5" className="whitespace-nowrap">
{props.getValue()}
{props.getValue()} &mdash; {props.row.original.token}
</Typography>
</div>
</TableCellWrapper>
Expand Down
4 changes: 2 additions & 2 deletions apps/tangle-dapp/containers/LsPoolsTable/LsProtocolsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const COLUMN_HELPER = createColumnHelper<LsProtocolRow>();

const PROTOCOL_COLUMNS = [
COLUMN_HELPER.accessor('name', {
header: () => 'Token',
header: () => 'Network & Token',
cell: (props) => (
<TableCellWrapper className="pl-3">
<div className="flex items-center gap-2">
Expand All @@ -51,7 +51,7 @@ const PROTOCOL_COLUMNS = [
/>

<Typography variant="h5" className="whitespace-nowrap">
{props.getValue()}
{props.getValue()} &mdash; {props.row.original.token}
</Typography>
</div>
</TableCellWrapper>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { CrossChainTimeUnit } from '../../../utils/CrossChainTime';
const TANGLE_LOCAL = {
networkId: LsNetworkId.TANGLE_LOCAL,
id: LsProtocolId.TANGLE_LOCAL,
name: 'Tangle Local',
name: 'Tangle',
token: LsToken.TTNT,
chainIconFileName: 'tangle',
decimals: TANGLE_TOKEN_DECIMALS,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { CrossChainTimeUnit } from '../../../utils/CrossChainTime';
const TANGLE_MAINNET = {
networkId: LsNetworkId.TANGLE_MAINNET,
id: LsProtocolId.TANGLE_MAINNET,
name: 'Tangle Mainnet',
name: 'Tangle',
token: LsToken.TNT,
chainIconFileName: 'tangle',
decimals: TANGLE_TOKEN_DECIMALS,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { CrossChainTimeUnit } from '../../../utils/CrossChainTime';
const TANGLE_TESTNET = {
networkId: LsNetworkId.TANGLE_TESTNET,
id: LsProtocolId.TANGLE_TESTNET,
name: 'Tangle Testnet',
name: 'Tangle',
token: LsToken.TTNT,
chainIconFileName: 'tangle',
decimals: TANGLE_TOKEN_DECIMALS,
Expand Down

0 comments on commit a0b7bfb

Please sign in to comment.