Skip to content

Commit

Permalink
refactor: remove unnecessary values from environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
NdekoCode committed Nov 9, 2023
1 parent 8463f3a commit 366afb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/web/.env
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ NEXT_PUBLIC_SENTRY_DNS=
NEXT_PUBLIC_SENTRY_DEBUG=false # true/false

# JITSU
NEXT_JITSU_BROWSER_URL=https://clorjoi1u0000286e7vrt5q5k.d.jitsu.com
NEXT_JITSU_BROWSER_WRITE_KEY=SIe2K1Gw24xQ6hp751pslUOY5oK96zZE:wpjJvbP987ycxMmiwaDmq6F25FXHDO0p
NEXT_JITSU_BROWSER_URL=
NEXT_JITSU_BROWSER_WRITE_KEY=

# Github Integration
NEXT_PUBLIC_GITHUB_APP_NAME=ever-github
Expand Down
1 change: 0 additions & 1 deletion apps/web/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ const MyApp = ({ Component, pageProps }: AppProps) => {
console.log('Jutsu Host', pageProps);

Check warning on line 21 in apps/web/pages/_app.tsx

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (Jutsu)
console.log(`Jitsu Configuration: ${JSON.stringify(jitsuConf)}`);

console.log('VARIABLE: ', process.env.NEXT);
const isJitsuEnvsPresent: boolean = jitsuConf.host !== '' && jitsuConf.writeKey !== '';
console.log(`Jitsu Enabled: ${isJitsuEnvsPresent}`);

Expand Down

0 comments on commit 366afb0

Please sign in to comment.