diff --git a/src/components/NotificationsBar/NotificationsBar.tsx b/src/components/NotificationsBar/NotificationsBar.tsx index 21b345426..d40e0c62e 100644 --- a/src/components/NotificationsBar/NotificationsBar.tsx +++ b/src/components/NotificationsBar/NotificationsBar.tsx @@ -51,24 +51,15 @@ export const NotificationsBar = () => { )} {notification.id === TEMP_LOCAL_NOTIFICATION_DISMISSED && (
- This is a new devnet (formerly known as 'devnet2' ). - The original devnet was + Devnet hard-fork process scheduled for January 18, 2024 08:00 + UTC. - reset on November 1st, 2023 - - . Find the old network explorer at{' '} - - https://devnet-old-explorer.multiversx.com + See More
)} diff --git a/src/hooks/useTempStorageNotification.ts b/src/hooks/useTempStorageNotification.ts index a4642e76a..673c6faa4 100644 --- a/src/hooks/useTempStorageNotification.ts +++ b/src/hooks/useTempStorageNotification.ts @@ -21,7 +21,7 @@ export const useTempStorageNotification = () => { if (!exists) { addNotification({ id: TEMP_LOCAL_NOTIFICATION_DISMISSED, - text: 'This is a new devnet (formerly known as 'devnet2apos; ). The original devnet was reset on November 1st 2023', + text: 'Devnet hard-fork process scheduled for January 18, 2024 08:00 UTC.', dismissable: true, priority: 2 }); diff --git a/src/layouts/Layout/Layout.tsx b/src/layouts/Layout/Layout.tsx index 0f3aab517..26cc8af0c 100644 --- a/src/layouts/Layout/Layout.tsx +++ b/src/layouts/Layout/Layout.tsx @@ -11,7 +11,8 @@ import { useNetworkRouter, useLoopManager, useCheckVersion, - useGetURLNetwork + useGetURLNetwork, + useTempStorageNotification } from 'hooks'; import { activeNetworkSelector, defaultNetworkSelector } from 'redux/selectors'; @@ -37,6 +38,7 @@ export const Layout = () => { useNetworkRouter(); useLoopManager(); useCheckVersion(); + useTempStorageNotification(); const offline = !window.navigator.onLine;