Skip to content

Commit ee03cdd

Browse files
committed
ROFL App details table
1 parent 302a6a4 commit ee03cdd

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

src/app/components/Blocks/BlockLink.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,8 @@ export const BlockHashLink: FC<{
3939
if (!isTablet) {
4040
// Desktop view
4141
return (
42-
<Link asChild>
43-
<RouterLink to={to} className="text-primary font-medium">
44-
{hash}
45-
</RouterLink>
42+
<Link asChild className="font-medium">
43+
<RouterLink to={to}>{hash}</RouterLink>
4644
</Link>
4745
)
4846
}

src/app/components/TableCellNode/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { FC } from 'react'
2-
import Typography from '@mui/material/Typography'
32
import { NodeDisplayType } from '../../../types/node-display-type'
43
import { SearchScope } from '../../../types/searchScope'
54
import { useScreenSize } from '../../hooks/useScreensize'
@@ -24,5 +23,5 @@ export const TableCellNode: FC<TableCellNodeProps> = ({ id, scope }) => {
2423
return <AccountLink alwaysTrimOnTablet scope={scope} address={getOasisAddressFromBase64PublicKey(id)} />
2524
}
2625

27-
return <Typography variant="mono">{isTablet ? trimLongString(id) : id}</Typography>
26+
return <span className="font-medium">{isTablet ? trimLongString(id) : id}</span>
2827
}

0 commit comments

Comments
 (0)