Skip to content
8 changes: 4 additions & 4 deletions components/Account/DexOrdersData.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,15 +161,15 @@ export default function DexOrdersData({ account, offerList, ledgerTimestamp, set
{offerList.length > 5 ? (
<>
The last 5 DEX orders{historicalTitle} [
<a href={`/account/${address}/dex`} className="link bold">
<a href={`/account/${address}/dex`} className="link">
View all ({offerList.length} total)
</a>{' '}
]
</>
) : (
<>
{offerList.length} DEX orders{historicalTitle} [
<a href={`/account/${address}/dex`} className="link bold">
<a href={`/account/${address}/dex`} className="link">
View details
</a>
]
Expand Down Expand Up @@ -204,15 +204,15 @@ export default function DexOrdersData({ account, offerList, ledgerTimestamp, set
{offerList.length > 5 ? (
<>
The last 5 DEX orders{historicalTitle} [
<a href={`/account/${address}/dex`} className="link bold">
<a href={`/account/${address}/dex`} className="link">
View all ({offerList.length} total)
</a>{' '}
]
</>
) : (
<>
{offerList.length} DEX orders{historicalTitle} [
<a href={`/account/${address}/dex`} className="link bold">
<a href={`/account/${address}/dex`} className="link">
View details
</a>
]
Expand Down
Loading