+
{t('stakingNodeNotFound', { node })}
);
}
return (
- <>
+
{nodeInfo.name
? t('validatorTitle', { nodeName: nodeInfo.name })
@@ -117,22 +113,33 @@ export const StakingNode = ({ vegaKey, data }: StakingNodeProps) => {
/>
)}
-
-
- >
+
+ {vegaKey ? (
+ <>
+
+
+
+ >
+ ) : (
+ <>
+ {t('Connect to see your stake')}
+
+ >
+ )}
+
);
};
diff --git a/apps/token/src/routes/staking/staking-nodes-container.tsx b/apps/token/src/routes/staking/staking-nodes-container.tsx
index 29cad5031..20a371617 100644
--- a/apps/token/src/routes/staking/staking-nodes-container.tsx
+++ b/apps/token/src/routes/staking/staking-nodes-container.tsx
@@ -85,7 +85,6 @@ export const StakingNodesContainer = ({
STAKING_QUERY,
{
variables: { partyId: keypair?.pub || '' },
- skip: !keypair?.pub,
}
);