Skip to content

Commit

Permalink
Removes banner (#3355)
Browse files Browse the repository at this point in the history
  • Loading branch information
abtestingalpha authored Oct 31, 2024
1 parent a330c8b commit 049c1a1
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions packages/explorer-ui/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const App = ({ Component, pageProps }) => {
<GoogleAnalytics gaId={'G-BBC13LQXBD'} />
<ApolloProvider client={client}>
<PageWrapper>
<Banner />
{/* <Banner /> */}
<Component {...pageProps} />
<Analytics />
</PageWrapper>
Expand All @@ -25,13 +25,13 @@ const App = ({ Component, pageProps }) => {
)
}

const Banner = () => {
return (
<div className="flex items-center justify-center w-full h-12 p-4 text-white bg-purple-700">
We're updating the explorer at the moment, and some data may be
inaccurate. Thank you for your patience.
</div>
)
}
// const Banner = () => {
// return (
// <div className="flex items-center justify-center w-full h-12 p-4 text-white bg-purple-700">
// We're updating the explorer at the moment, and some data may be
// inaccurate. Thank you for your patience.
// </div>
// )
// }

export default App

0 comments on commit 049c1a1

Please sign in to comment.