From a62f5f0d1602a660cd7cfd914cf9bb3338fa2886 Mon Sep 17 00:00:00 2001 From: Kaja Date: Tue, 11 Nov 2025 16:21:42 +0100 Subject: [PATCH 1/5] Add Changelog fragment --- .changelog/2327.trivial.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 .changelog/2327.trivial.md diff --git a/.changelog/2327.trivial.md b/.changelog/2327.trivial.md new file mode 100644 index 0000000000..e323a67487 --- /dev/null +++ b/.changelog/2327.trivial.md @@ -0,0 +1 @@ +Reimplement mono fonts. From ee557fb2cfa18e322464f1b9640f0eee6f5f2d3d Mon Sep 17 00:00:00 2001 From: Kaja Date: Mon, 24 Nov 2025 15:59:31 +0100 Subject: [PATCH 2/5] Reimplement mono fonts --- src/app/components/Account/AccountLink.tsx | 12 ++++++------ src/app/components/Account/ConsensusAccountLink.tsx | 2 +- src/app/components/Blocks/BlockLink.tsx | 12 +++++------- src/app/components/Link/index.tsx | 4 +++- src/app/components/LongDataDisplay/index.tsx | 6 +----- src/app/components/Rofl/RoflAppInstanceLink.tsx | 5 +++-- src/app/components/Rofl/RoflAppLink.tsx | 3 +++ src/app/components/Rofl/RoflAppsList.tsx | 9 +++++++-- .../components/RuntimeEvents/RuntimeEventDetails.tsx | 2 +- src/app/components/TableCellNode/index.tsx | 2 +- src/app/components/Transactions/TransactionLink.tsx | 2 +- src/app/components/Validators/ValidatorLink.tsx | 3 +++ src/app/components/Validators/index.tsx | 1 + src/app/pages/ConsensusBlockDetailPage/index.tsx | 5 +++-- src/app/pages/RoflAppDetailsPage/Enclaves.tsx | 2 +- src/app/pages/RoflAppDetailsPage/InstancesList.tsx | 2 +- src/app/pages/RoflAppDetailsPage/index.tsx | 4 ++-- src/app/pages/RoflAppInstanceDetailsPage/index.tsx | 8 ++++---- src/app/pages/RuntimeTransactionDetailPage/index.tsx | 6 +++--- src/app/pages/ValidatorDetailsPage/index.tsx | 4 ++-- src/styles/tailwind.css | 1 + 21 files changed, 53 insertions(+), 42 deletions(-) diff --git a/src/app/components/Account/AccountLink.tsx b/src/app/components/Account/AccountLink.tsx index d2d0a0acc4..f426c2ee6e 100644 --- a/src/app/components/Account/AccountLink.tsx +++ b/src/app/components/Account/AccountLink.tsx @@ -27,7 +27,7 @@ const WithTypographyAndLink: FC<{ {labelOnly ? ( {children} ) : ( - + {children} )} @@ -128,12 +128,12 @@ const TrimmedAccountLink: FC< {showAccountName ? ( - + {' '} {trimLongString(accountName, 12, 0)} ) : ( - trimLongString(address, 6, 6) + {trimLongString(address, 6, 6)} )} @@ -155,15 +155,15 @@ const DesktopAccountLink: FC< {showAccountName ? ( -
- +
+ ({address})
) : ( - address + {address} )} diff --git a/src/app/components/Account/ConsensusAccountLink.tsx b/src/app/components/Account/ConsensusAccountLink.tsx index ae0502b413..f808ba4f74 100644 --- a/src/app/components/Account/ConsensusAccountLink.tsx +++ b/src/app/components/Account/ConsensusAccountLink.tsx @@ -20,7 +20,7 @@ export const ConsensusAccountLink: FC = ({ const { data } = useGetConsensusValidatorsAddressNameMap(network) if (data?.data && address in data.data) { - return + return } return ( diff --git a/src/app/components/Blocks/BlockLink.tsx b/src/app/components/Blocks/BlockLink.tsx index 97efc3c9b2..23715b7866 100644 --- a/src/app/components/Blocks/BlockLink.tsx +++ b/src/app/components/Blocks/BlockLink.tsx @@ -27,10 +27,8 @@ export const BlockHashLink: FC<{ // Table view return ( - - - {trimLongString(hash)} - + + {trimLongString(hash)} ) @@ -39,7 +37,7 @@ export const BlockHashLink: FC<{ if (!isTablet) { // Desktop view return ( - + {hash} ) @@ -48,8 +46,8 @@ export const BlockHashLink: FC<{ // Mobile view return ( - - + + diff --git a/src/app/components/Link/index.tsx b/src/app/components/Link/index.tsx index 479c603fb9..74d7bcc336 100644 --- a/src/app/components/Link/index.tsx +++ b/src/app/components/Link/index.tsx @@ -22,6 +22,7 @@ type LinkProps = { to: string withSourceIndicator?: boolean labelOnly?: boolean + mono?: boolean } export const Link: FC = ({ @@ -32,6 +33,7 @@ export const Link: FC = ({ to, withSourceIndicator = true, labelOnly, + mono = true, }) => { const { isTablet } = useScreenSize() const hasName = name?.toLowerCase() !== address.toLowerCase() @@ -60,7 +62,7 @@ export const Link: FC = ({
{hasName && withSourceIndicator && } - + {isTablet ? ( ) : ( diff --git a/src/app/components/LongDataDisplay/index.tsx b/src/app/components/LongDataDisplay/index.tsx index 020e1ba0ff..6cb67ad562 100644 --- a/src/app/components/LongDataDisplay/index.tsx +++ b/src/app/components/LongDataDisplay/index.tsx @@ -36,11 +36,7 @@ export const LongDataDisplay: FC<{ data: string; fontWeight?: number; collapsedL
= ({ alwaysTrim, id, network, rak }) => { +export const RoflAppInstanceLink: FC = ({ alwaysTrim, id, network, rak, mono }) => { const to = RouteUtils.getRoflAppInstanceRoute(network, id, rak) - return + return } diff --git a/src/app/components/Rofl/RoflAppLink.tsx b/src/app/components/Rofl/RoflAppLink.tsx index 2e9cf5bb88..2e887d5982 100644 --- a/src/app/components/Rofl/RoflAppLink.tsx +++ b/src/app/components/Rofl/RoflAppLink.tsx @@ -11,6 +11,7 @@ type RoflAppLinkProps = { trimMode?: TrimMode withSourceIndicator?: boolean labelOnly?: boolean + mono?: boolean } export const RoflAppLink: FC = ({ @@ -21,6 +22,7 @@ export const RoflAppLink: FC = ({ trimMode, withSourceIndicator, labelOnly, + mono, }) => { const to = RouteUtils.getRoflAppRoute(network, id) @@ -33,6 +35,7 @@ export const RoflAppLink: FC = ({ trimMode={trimMode} withSourceIndicator={withSourceIndicator} labelOnly={labelOnly} + mono={mono} /> ) } diff --git a/src/app/components/Rofl/RoflAppsList.tsx b/src/app/components/Rofl/RoflAppsList.tsx index 40865291f9..f4f3b35138 100644 --- a/src/app/components/Rofl/RoflAppsList.tsx +++ b/src/app/components/Rofl/RoflAppsList.tsx @@ -50,7 +50,12 @@ export const RoflAppsList: FC = ({ isLoading, limit, paginati }, { content: app?.metadata['net.oasis.rofl.name'] ? ( - + ) : ( t('rofl.nameNotProvided') ), @@ -63,7 +68,7 @@ export const RoflAppsList: FC = ({ isLoading, limit, paginati key: 'status', }, { - content: , + content: , key: 'id', }, { diff --git a/src/app/components/RuntimeEvents/RuntimeEventDetails.tsx b/src/app/components/RuntimeEvents/RuntimeEventDetails.tsx index 27b788240e..f9a8876cab 100644 --- a/src/app/components/RuntimeEvents/RuntimeEventDetails.tsx +++ b/src/app/components/RuntimeEvents/RuntimeEventDetails.tsx @@ -277,7 +277,7 @@ const RuntimeEventDetailsInner: FC<{ {eventName}
{t('runtimeEvent.fields.topics')}: - + {event.body.topics /* @ts-expect-error -- Event body is missing types */ .map((base64Topic, index) => { diff --git a/src/app/components/TableCellNode/index.tsx b/src/app/components/TableCellNode/index.tsx index b27c788292..d65bd43425 100644 --- a/src/app/components/TableCellNode/index.tsx +++ b/src/app/components/TableCellNode/index.tsx @@ -23,5 +23,5 @@ export const TableCellNode: FC = ({ id, scope }) => { return } - return {isTablet ? trimLongString(id) : id} + return {isTablet ? trimLongString(id) : id} } diff --git a/src/app/components/Transactions/TransactionLink.tsx b/src/app/components/Transactions/TransactionLink.tsx index 34a9bee706..04d52b71d2 100644 --- a/src/app/components/Transactions/TransactionLink.tsx +++ b/src/app/components/Transactions/TransactionLink.tsx @@ -15,7 +15,7 @@ const WithTypographyAndLink: FC<{ children: ReactNode; mobile?: boolean; to: str mobile, to, }) => ( - + {children} ) diff --git a/src/app/components/Validators/ValidatorLink.tsx b/src/app/components/Validators/ValidatorLink.tsx index 5cb5b542d2..aa7d5a6a0a 100644 --- a/src/app/components/Validators/ValidatorLink.tsx +++ b/src/app/components/Validators/ValidatorLink.tsx @@ -10,6 +10,7 @@ type ValidatorLinkProps = { name?: string network: Network withSourceIndicator?: boolean + mono?: boolean } export const ValidatorLink: FC = ({ @@ -18,6 +19,7 @@ export const ValidatorLink: FC = ({ name, network, withSourceIndicator, + mono, }) => { const to = RouteUtils.getValidatorRoute(network, address) const validatorName = useValidatorName(network, address) @@ -30,6 +32,7 @@ export const ValidatorLink: FC = ({ name={displayName} to={to} withSourceIndicator={withSourceIndicator} + mono={mono} /> ) } diff --git a/src/app/components/Validators/index.tsx b/src/app/components/Validators/index.tsx index 0320e041a2..d6d4082cc5 100644 --- a/src/app/components/Validators/index.tsx +++ b/src/app/components/Validators/index.tsx @@ -58,6 +58,7 @@ export const Validators: FC = ({ isLoading, limit, pagination, address={validator.entity_address} name={validator.media?.name} network={network} + mono={false} />
), diff --git a/src/app/pages/ConsensusBlockDetailPage/index.tsx b/src/app/pages/ConsensusBlockDetailPage/index.tsx index 59a86fcd43..7ef7bb0c0b 100644 --- a/src/app/pages/ConsensusBlockDetailPage/index.tsx +++ b/src/app/pages/ConsensusBlockDetailPage/index.tsx @@ -114,11 +114,11 @@ export const ConsensusBlockDetailView: FC<{
{t('common.stateRoot')}
{isTablet ? ( - + ) : ( - {block.state_root} + {block.state_root} )}
@@ -134,6 +134,7 @@ export const ConsensusBlockDetailView: FC<{ address={block.proposer?.entity_address} alwaysTrim network={block.network} + mono={false} /> diff --git a/src/app/pages/RoflAppDetailsPage/Enclaves.tsx b/src/app/pages/RoflAppDetailsPage/Enclaves.tsx index b11dca9df7..8ee49f8b25 100644 --- a/src/app/pages/RoflAppDetailsPage/Enclaves.tsx +++ b/src/app/pages/RoflAppDetailsPage/Enclaves.tsx @@ -20,7 +20,7 @@ export const Enclaves: FC = ({ policy }) => { {policy.enclaves.map((enclave: string) => ( - {enclave} + {enclave} diff --git a/src/app/pages/RoflAppDetailsPage/InstancesList.tsx b/src/app/pages/RoflAppDetailsPage/InstancesList.tsx index 9fd98945d0..c5c849e4d0 100644 --- a/src/app/pages/RoflAppDetailsPage/InstancesList.tsx +++ b/src/app/pages/RoflAppDetailsPage/InstancesList.tsx @@ -55,7 +55,7 @@ export const InstancesList: FC = ({ data: [ { key: 'rak', - content: , + content: , }, { key: 'node', diff --git a/src/app/pages/RoflAppDetailsPage/index.tsx b/src/app/pages/RoflAppDetailsPage/index.tsx index 2cb19f6c2b..3b0ebf47a8 100644 --- a/src/app/pages/RoflAppDetailsPage/index.tsx +++ b/src/app/pages/RoflAppDetailsPage/index.tsx @@ -127,7 +127,7 @@ export const RoflAppDetailsView: FC<{ - {app.id} + {app.id} @@ -168,7 +168,7 @@ export const RoflAppDetailsView: FC<{
} > - {app.sek} + {app.sek}
- + {instance.rak}
@@ -83,7 +83,7 @@ export const RoflAppInstanceDetailsView: FC<{
- + {instance.rek}
@@ -91,12 +91,12 @@ export const RoflAppInstanceDetailsView: FC<{
{instance.expiration_epoch.toLocaleString()}
{t('rofl.roflAppId')}
- +
{t('rofl.endorsingNodeId')}
- + {instance.endorsing_node_id}
diff --git a/src/app/pages/RuntimeTransactionDetailPage/index.tsx b/src/app/pages/RuntimeTransactionDetailPage/index.tsx index 4cd7c29d93..8a9a0dceb3 100644 --- a/src/app/pages/RuntimeTransactionDetailPage/index.tsx +++ b/src/app/pages/RuntimeTransactionDetailPage/index.tsx @@ -430,7 +430,7 @@ export const RuntimeTransactionDetailView: FC<{ <>
{t('transactions.encryption.publicKey')}
- {envelope.public_key} + {envelope.public_key}
)} @@ -439,7 +439,7 @@ export const RuntimeTransactionDetailView: FC<{ <>
{t('transactions.encryption.dataNonce')}
- {envelope.data_nonce} + {envelope.data_nonce}
)} @@ -457,7 +457,7 @@ export const RuntimeTransactionDetailView: FC<{ <>
{t('transactions.encryption.resultNonce')}
- {envelope.result_nonce} + {envelope.result_nonce}
)} diff --git a/src/app/pages/ValidatorDetailsPage/index.tsx b/src/app/pages/ValidatorDetailsPage/index.tsx index 852fe64c37..967dbbffc6 100644 --- a/src/app/pages/ValidatorDetailsPage/index.tsx +++ b/src/app/pages/ValidatorDetailsPage/index.tsx @@ -262,9 +262,9 @@ export const ValidatorDetailsView: FC<{ )}
{t('validator.entityId')}
-
{validator.entity_id}
+
{validator.entity_id}
{t('common.nodeId')}
-
{validator.node_id}
+
{validator.node_id}
{validator.node_id && ( <>
{t('common.nodeAddress')}
diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index 43c7f19f2c..46505725ea 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -1,6 +1,7 @@ @import '@oasisprotocol/ui-library/src/styles/global.css'; @theme { + --font-mono: 'Roboto Mono Variable', monospace; --color-theme-surface: var(--color-theme-surface); --color-theme-accent: var(--color-theme-accent); --color-theme-accent-light: var(--color-theme-accent-light); From 5cafc8bbc6ed123d2bb4e1da302ffcaef596ffa5 Mon Sep 17 00:00:00 2001 From: Kaja Date: Thu, 27 Nov 2025 04:28:21 +0100 Subject: [PATCH 3/5] Remove grey background overflow indicator --- src/app/components/AdaptiveTrimmer/AdaptiveDynamicTrimmer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/AdaptiveTrimmer/AdaptiveDynamicTrimmer.tsx b/src/app/components/AdaptiveTrimmer/AdaptiveDynamicTrimmer.tsx index 7b56327119..a49027b433 100644 --- a/src/app/components/AdaptiveTrimmer/AdaptiveDynamicTrimmer.tsx +++ b/src/app/components/AdaptiveTrimmer/AdaptiveDynamicTrimmer.tsx @@ -89,7 +89,7 @@ export const AdaptiveDynamicTrimmer: FC = ({ ) return ( - + Date: Thu, 27 Nov 2025 04:09:04 +0100 Subject: [PATCH 4/5] Avoid font-sans so Inter font is used instead --- src/app/components/Account/AccountLink.tsx | 6 +++--- src/app/components/Link/index.tsx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/components/Account/AccountLink.tsx b/src/app/components/Account/AccountLink.tsx index f426c2ee6e..80be327236 100644 --- a/src/app/components/Account/AccountLink.tsx +++ b/src/app/components/Account/AccountLink.tsx @@ -155,12 +155,12 @@ const DesktopAccountLink: FC< {showAccountName ? ( -
- +
+ - ({address}) + ({address})
) : ( {address} diff --git a/src/app/components/Link/index.tsx b/src/app/components/Link/index.tsx index 74d7bcc336..f0a20e140d 100644 --- a/src/app/components/Link/index.tsx +++ b/src/app/components/Link/index.tsx @@ -62,7 +62,7 @@ export const Link: FC = ({
{hasName && withSourceIndicator && } - + {isTablet ? ( ) : ( From f68bd09397910a938434a58f5fcde5d7a9863971 Mon Sep 17 00:00:00 2001 From: lukaw3d Date: Thu, 27 Nov 2025 05:14:26 +0100 Subject: [PATCH 5/5] Remove manual `mono` prop and determine it based on address vs name --- src/app/components/Account/AccountLink.tsx | 20 +++++++------ .../Account/ConsensusAccountLink.tsx | 2 +- src/app/components/Link/index.tsx | 28 ++++++++----------- .../components/Rofl/RoflAppInstanceLink.tsx | 5 ++-- src/app/components/Rofl/RoflAppLink.tsx | 3 -- src/app/components/Rofl/RoflAppsList.tsx | 9 ++---- .../components/Validators/ValidatorLink.tsx | 3 -- src/app/components/Validators/index.tsx | 1 - .../pages/ConsensusBlockDetailPage/index.tsx | 1 - .../RoflAppDetailsPage/InstancesList.tsx | 2 +- .../RoflAppInstanceDetailsPage/index.tsx | 2 +- 11 files changed, 29 insertions(+), 47 deletions(-) diff --git a/src/app/components/Account/AccountLink.tsx b/src/app/components/Account/AccountLink.tsx index 80be327236..6ce68bc6d7 100644 --- a/src/app/components/Account/AccountLink.tsx +++ b/src/app/components/Account/AccountLink.tsx @@ -27,7 +27,7 @@ const WithTypographyAndLink: FC<{ {labelOnly ? ( {children} ) : ( - + {children} )} @@ -103,13 +103,15 @@ const AdaptivelyTrimmedAccountLink: FC< /> )} - + + +
) @@ -128,7 +130,7 @@ const TrimmedAccountLink: FC< {showAccountName ? ( - + {' '} {trimLongString(accountName, 12, 0)} diff --git a/src/app/components/Account/ConsensusAccountLink.tsx b/src/app/components/Account/ConsensusAccountLink.tsx index f808ba4f74..ae0502b413 100644 --- a/src/app/components/Account/ConsensusAccountLink.tsx +++ b/src/app/components/Account/ConsensusAccountLink.tsx @@ -20,7 +20,7 @@ export const ConsensusAccountLink: FC = ({ const { data } = useGetConsensusValidatorsAddressNameMap(network) if (data?.data && address in data.data) { - return + return } return ( diff --git a/src/app/components/Link/index.tsx b/src/app/components/Link/index.tsx index f0a20e140d..24d9cce0aa 100644 --- a/src/app/components/Link/index.tsx +++ b/src/app/components/Link/index.tsx @@ -1,4 +1,4 @@ -import { FC, PropsWithChildren } from 'react' +import { FC } from 'react' import { Link as RouterLink } from 'react-router-dom' import { useScreenSize } from '../../hooks/useScreensize' import { Link as UilLink } from '@oasisprotocol/ui-library/src/components/link' @@ -22,7 +22,6 @@ type LinkProps = { to: string withSourceIndicator?: boolean labelOnly?: boolean - mono?: boolean } export const Link: FC = ({ @@ -33,7 +32,6 @@ export const Link: FC = ({ to, withSourceIndicator = true, labelOnly, - mono = true, }) => { const { isTablet } = useScreenSize() const hasName = name?.toLowerCase() !== address.toLowerCase() @@ -62,7 +60,7 @@ export const Link: FC = ({
{hasName && withSourceIndicator && } - + {isTablet ? ( ) : ( @@ -88,10 +86,6 @@ type CustomTrimEndLinkLabelProps = { trimMode?: TrimMode } -const LinkLabel: FC = ({ children }) => ( - {children} -) - const CustomTrimEndLinkLabel: FC = ({ name, to, labelOnly, trimMode }) => { const label = trimMode === 'adaptive' ? ( @@ -100,7 +94,7 @@ const CustomTrimEndLinkLabel: FC = ({ name, to, lab ) return labelOnly ? ( - {label} + {label} ) : ( {label} @@ -121,17 +115,17 @@ const TabletLink: FC = ({ address, name, to, labelOnly, trimMod return } - const label = + const trimmedAddr = trimMode === 'adaptive' ? ( ) : ( trimLongString(address) ) return labelOnly ? ( - {label} + {trimmedAddr} ) : ( - - {label} + + {trimmedAddr} ) } @@ -148,20 +142,20 @@ const DesktopLink: FC = ({ address, name, to, alwaysTrim, trim {name ? ( ) : labelOnly ? ( - {trimLongString(address)} + {trimLongString(address)} ) : ( - + {trimLongString(address)} )} ) } - const label = name ? : address + const label = name ? : {address} return ( {labelOnly ? ( - {label} + {label} ) : ( {label} diff --git a/src/app/components/Rofl/RoflAppInstanceLink.tsx b/src/app/components/Rofl/RoflAppInstanceLink.tsx index 29a27798c8..2fabd10825 100644 --- a/src/app/components/Rofl/RoflAppInstanceLink.tsx +++ b/src/app/components/Rofl/RoflAppInstanceLink.tsx @@ -8,11 +8,10 @@ type RoflAppInstanceLinkProps = { id: string network: Network rak: string - mono?: boolean } -export const RoflAppInstanceLink: FC = ({ alwaysTrim, id, network, rak, mono }) => { +export const RoflAppInstanceLink: FC = ({ alwaysTrim, id, network, rak }) => { const to = RouteUtils.getRoflAppInstanceRoute(network, id, rak) - return + return } diff --git a/src/app/components/Rofl/RoflAppLink.tsx b/src/app/components/Rofl/RoflAppLink.tsx index 2e887d5982..2e9cf5bb88 100644 --- a/src/app/components/Rofl/RoflAppLink.tsx +++ b/src/app/components/Rofl/RoflAppLink.tsx @@ -11,7 +11,6 @@ type RoflAppLinkProps = { trimMode?: TrimMode withSourceIndicator?: boolean labelOnly?: boolean - mono?: boolean } export const RoflAppLink: FC = ({ @@ -22,7 +21,6 @@ export const RoflAppLink: FC = ({ trimMode, withSourceIndicator, labelOnly, - mono, }) => { const to = RouteUtils.getRoflAppRoute(network, id) @@ -35,7 +33,6 @@ export const RoflAppLink: FC = ({ trimMode={trimMode} withSourceIndicator={withSourceIndicator} labelOnly={labelOnly} - mono={mono} /> ) } diff --git a/src/app/components/Rofl/RoflAppsList.tsx b/src/app/components/Rofl/RoflAppsList.tsx index f4f3b35138..40865291f9 100644 --- a/src/app/components/Rofl/RoflAppsList.tsx +++ b/src/app/components/Rofl/RoflAppsList.tsx @@ -50,12 +50,7 @@ export const RoflAppsList: FC = ({ isLoading, limit, paginati }, { content: app?.metadata['net.oasis.rofl.name'] ? ( - + ) : ( t('rofl.nameNotProvided') ), @@ -68,7 +63,7 @@ export const RoflAppsList: FC = ({ isLoading, limit, paginati key: 'status', }, { - content: , + content: , key: 'id', }, { diff --git a/src/app/components/Validators/ValidatorLink.tsx b/src/app/components/Validators/ValidatorLink.tsx index aa7d5a6a0a..5cb5b542d2 100644 --- a/src/app/components/Validators/ValidatorLink.tsx +++ b/src/app/components/Validators/ValidatorLink.tsx @@ -10,7 +10,6 @@ type ValidatorLinkProps = { name?: string network: Network withSourceIndicator?: boolean - mono?: boolean } export const ValidatorLink: FC = ({ @@ -19,7 +18,6 @@ export const ValidatorLink: FC = ({ name, network, withSourceIndicator, - mono, }) => { const to = RouteUtils.getValidatorRoute(network, address) const validatorName = useValidatorName(network, address) @@ -32,7 +30,6 @@ export const ValidatorLink: FC = ({ name={displayName} to={to} withSourceIndicator={withSourceIndicator} - mono={mono} /> ) } diff --git a/src/app/components/Validators/index.tsx b/src/app/components/Validators/index.tsx index d6d4082cc5..0320e041a2 100644 --- a/src/app/components/Validators/index.tsx +++ b/src/app/components/Validators/index.tsx @@ -58,7 +58,6 @@ export const Validators: FC = ({ isLoading, limit, pagination, address={validator.entity_address} name={validator.media?.name} network={network} - mono={false} />
), diff --git a/src/app/pages/ConsensusBlockDetailPage/index.tsx b/src/app/pages/ConsensusBlockDetailPage/index.tsx index 7ef7bb0c0b..af7ef03c7a 100644 --- a/src/app/pages/ConsensusBlockDetailPage/index.tsx +++ b/src/app/pages/ConsensusBlockDetailPage/index.tsx @@ -134,7 +134,6 @@ export const ConsensusBlockDetailView: FC<{ address={block.proposer?.entity_address} alwaysTrim network={block.network} - mono={false} /> diff --git a/src/app/pages/RoflAppDetailsPage/InstancesList.tsx b/src/app/pages/RoflAppDetailsPage/InstancesList.tsx index c5c849e4d0..9fd98945d0 100644 --- a/src/app/pages/RoflAppDetailsPage/InstancesList.tsx +++ b/src/app/pages/RoflAppDetailsPage/InstancesList.tsx @@ -55,7 +55,7 @@ export const InstancesList: FC = ({ data: [ { key: 'rak', - content: , + content: , }, { key: 'node', diff --git a/src/app/pages/RoflAppInstanceDetailsPage/index.tsx b/src/app/pages/RoflAppInstanceDetailsPage/index.tsx index 74473f51c7..3cb7b31bd0 100644 --- a/src/app/pages/RoflAppInstanceDetailsPage/index.tsx +++ b/src/app/pages/RoflAppInstanceDetailsPage/index.tsx @@ -91,7 +91,7 @@ export const RoflAppInstanceDetailsView: FC<{
{instance.expiration_epoch.toLocaleString()}
{t('rofl.roflAppId')}
- +
{t('rofl.endorsingNodeId')}