Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
NEXT_PUBLIC_API_URL=
NEXT_PUBLIC_ENVIRONMENT=
2 changes: 1 addition & 1 deletion src/components/Hero/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Container from '@/components/Container'
import EmergencyForm from '@/components/EmergencyForm'

const HeroSection: React.FC = () => {
const showEmergencyForm = process.env.NEXT_PUBLIC_ENVIRONMENT === 'test'
const showEmergencyForm = !process.env.NEXT_PUBLIC_ENVIRONMENT

return (
<section className="w-full bg-green py-5 lg:px-5">
Expand Down
Loading