Skip to content

Commit

Permalink
Remove defaults from code, use .env only
Browse files Browse the repository at this point in the history
  • Loading branch information
Strift committed Feb 27, 2025
1 parent 02cec2b commit 4f74594
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/hooks/useNewsletter.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import version from '../version/version'

const PORTAL_ID = process.env.REACT_APP_HUBSPOT_PORTAL_ID || '25945010'
const FORM_GUID =
process.env.REACT_APP_HUBSPOT_FORM_GUID ||
'991e2a09-77c2-4428-9242-ebf26bfc6c64'
const PORTAL_ID = process.env.REACT_APP_HUBSPOT_PORTAL_ID
const FORM_GUID = process.env.REACT_APP_HUBSPOT_FORM_GUID

const PAGE_NAME =
process.env.NODE_ENV === 'development'
Expand Down

0 comments on commit 4f74594

Please sign in to comment.