few more broken links

This commit is contained in:
Tommy Verrall
2025-03-21 12:55:31 +01:00
parent 813cbda891
commit 368b105e27
3 changed files with 3 additions and 3 deletions
@@ -61,7 +61,7 @@ export const DelegationItem = ({
)}
<Link
target="_blank"
href={`${explorerUrl}/network-components/nodes/${item.mix_id}`}
href={`${explorerUrl}/nodes/${item.mix_id}`}
text={`${item.node_identity.slice(0, 6)}...${item.node_identity.slice(-6)}`}
color="text.primary"
noIcon
@@ -8,7 +8,7 @@ export const PendingDelegationItem = ({ item, explorerUrl }: { item: WrappedDele
<TableCell>
<Link
target="_blank"
href={`${explorerUrl}/network-components/nodes/${item.event.mix_id}`}
href={`${explorerUrl}/nodes/${item.event.mix_id}`}
text={`${item.node_identity.slice(0, 6)}...${item.node_identity.slice(-6)}`}
color="text.primary"
noIcon
@@ -9,7 +9,7 @@ export const NodeStats = ({ mixnodeId }: { mixnodeId?: string }) => {
<Stack spacing={2} sx={{ p: 4 }}>
<Typography>All your node stats are available on the link below</Typography>
<Link
href={`${urls(network).networkExplorer}/network-components/nodes/${mixnodeId}`}
href={`${urls(network).networkExplorer}/nodes/${mixnodeId}`}
target="_blank"
text="Network Explorer"
/>