Skip to content

Commit

Permalink
fees - hide Dev Tools on prod
Browse files Browse the repository at this point in the history
  • Loading branch information
manishiwa committed Jul 2, 2024
1 parent 40ff3d5 commit f85075d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/(fees)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export default function RootLayout({
</FeesContainer>
</div>
</div>
{process.env.NEXT_PUBLIC_VERCEL_ENV === "development" && (
{/* {process.env.NEXT_PUBLIC_VERCEL_ENV === "development" && (
<div className="fixed bottom-0 left-0 z-50 bg-white dark:bg-black text-xs px-1 py-0.5">
<div className="block sm:hidden">{"< sm"}</div>
<div className="hidden sm:block md:hidden">{"sm"}</div>
Expand All @@ -221,7 +221,7 @@ export default function RootLayout({
<div className="hidden xl:block 2xl:hidden">{"xl"}</div>
<div className="hidden 2xl:block">{"2xl"}</div>
</div>
)}
)} */}
<DeveloperTools />
<CookieConsent />
</Providers>
Expand Down

0 comments on commit f85075d

Please sign in to comment.