Skip to content

Commit

Permalink
chore: remove display of tailwind indicator in production
Browse files Browse the repository at this point in the history
  • Loading branch information
NoorFatima01 committed May 5, 2024
1 parent 513fcab commit 7fd6231
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/tailwind-indicator.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// import { env } from '@/env.mjs';
import { isProd } from '@/constant/env';

export function TailwindIndicator() {
// if (env.NODE_ENV === 'production') return null;
if (isProd) return null;

return (
<div className='fixed bottom-1 left-1 z-50 flex size-6 items-center justify-center rounded-full bg-gray-800 p-3 font-mono text-xs text-white'>
Expand Down

0 comments on commit 7fd6231

Please sign in to comment.