Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

fix: yield protocol lend tertiary label #582

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export class ArbitrumYieldProtocolLendTokenFetcher implements PositionFetcher<Ap
const displayProps: DisplayProps = {
label: `fy${underlyingToken.symbol}`,
secondaryLabel: displayName,
tertiaryLabel: matured ? 'Matured' : '',
tertiaryLabel: matured ? 'Matured' : undefined,
images: getImagesFromToken(underlyingToken),
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export class EthereumYieldProtocolLendTokenFetcher implements PositionFetcher<Ap
const displayProps: DisplayProps = {
label: `fy${underlyingToken.symbol}`,
secondaryLabel: displayName,
tertiaryLabel: matured ? 'Matured' : '',
tertiaryLabel: matured ? 'Matured' : undefined,
images: getImagesFromToken(underlyingToken),
};

Expand Down