diff --git a/apps/staking/app/mystakes/modules/StakedNodesModule.tsx b/apps/staking/app/mystakes/modules/StakedNodesModule.tsx index 6c45dc84..1b565f0b 100644 --- a/apps/staking/app/mystakes/modules/StakedNodesModule.tsx +++ b/apps/staking/app/mystakes/modules/StakedNodesModule.tsx @@ -17,7 +17,7 @@ import { } from '@session/ui/components/ModuleGrid'; import { Button } from '@session/ui/ui/button'; import { Switch } from '@session/ui/ui/switch'; -import { useToggleWalletModal, useWallet } from '@session/wallet/hooks/wallet-hooks'; +import { useWallet } from '@session/wallet/hooks/wallet-hooks'; import { useTranslations } from 'next-intl'; import Link from 'next/link'; import { useMemo } from 'react'; @@ -83,18 +83,7 @@ function NoWallet() { return (

{dictionary('noWalletP1')}

-

- {dictionary.rich('noWalletP2', { - link: (children) => { - const { open } = useToggleWalletModal(); - return ( - open()} className="text-session-green cursor-pointer underline"> - {children} - - ); - }, - })} -

+

{dictionary('noWalletP2')}

); diff --git a/apps/staking/lib/constants.ts b/apps/staking/lib/constants.ts index 03e9c79c..02d76f72 100644 --- a/apps/staking/lib/constants.ts +++ b/apps/staking/lib/constants.ts @@ -19,7 +19,7 @@ export enum URL { } export enum COMMUNITY_DATE { - SESSION_TOKEN_COMMUNITY_SNAPSHOT = '2024-06-09', + SESSION_TOKEN_COMMUNITY_SNAPSHOT = '2024-06-12', OXEN_SERVICE_NODE_BONUS_PROGRAM = '2024-06-12', } diff --git a/apps/staking/locales/en.json b/apps/staking/locales/en.json index 19ad271d..2d03b00b 100644 --- a/apps/staking/locales/en.json +++ b/apps/staking/locales/en.json @@ -162,7 +162,7 @@ "title": "My Stakes", "showHiddenText": "Show Hidden", "noWalletP1": "You currently have no wallet connected.", - "noWalletP2": "Click the Connect button to view your staked Session node.", + "noWalletP2": "Click the Connect button to view your staked Session node.", "noNodesP1": "You have no staked Session Nodes.", "noNodesP2": "Click the Stake Now button to stake to an open node or register a new Session node.", "stakeNowButtonText": "Stake Now",