From 47194e6218d23c8e42c8df16790e6b64d4615dc7 Mon Sep 17 00:00:00 2001 From: Trajan0x Date: Thu, 31 Oct 2024 16:02:10 -0400 Subject: [PATCH] Revert "Removes banner (#3355)" This reverts commit 049c1a1af6c35fbc452b9a791560a8eb9c5a2c14. --- packages/explorer-ui/pages/_app.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/explorer-ui/pages/_app.tsx b/packages/explorer-ui/pages/_app.tsx index 2421604346..812accec59 100644 --- a/packages/explorer-ui/pages/_app.tsx +++ b/packages/explorer-ui/pages/_app.tsx @@ -16,7 +16,7 @@ const App = ({ Component, pageProps }) => { - {/* */} + @@ -25,13 +25,13 @@ const App = ({ Component, pageProps }) => { ) } -// const Banner = () => { -// return ( -//
-// We're updating the explorer at the moment, and some data may be -// inaccurate. Thank you for your patience. -//
-// ) -// } +const Banner = () => { + return ( +
+ We're updating the explorer at the moment, and some data may be + inaccurate. Thank you for your patience. +
+ ) +} export default App