Skip to content

Commit

Permalink
fix: Change env variable REFINER_NPS_PROJECT_ID -> REFINER_NPS_FORM_P…
Browse files Browse the repository at this point in the history
…ROJECT (#3257)
  • Loading branch information
Z3RO-O committed Nov 6, 2024
1 parent 2ef6438 commit 97a416c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hooks/utils/prod-environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const environment = {
GOOGLE_MAPS_API_KEY: '${process.env.FYLE_MOBILE_GOOGLE_MAPS_API_KEY}',
FRESHCHAT_TOKEN: '${process.env.FYLE_MOBILE_FRESHCHAT_TOKEN}',
SENTRY_DSN: '${process.env.FYLE_MOBILE_SENTRY_DSN}',
REFINER_NPS_PROJECT_ID: '${process.env.REFINER_NPS_PROJECT_ID}',
REFINER_NPS_FORM_PROJECT: '${process.env.REFINER_NPS_FORM_PROJECT}',
REFINER_NPS_FORM_ID: '${process.env.REFINER_NPS_FORM_ID}',
LAUNCH_DARKLY_CLIENT_ID: '${process.env.LAUNCH_DARKLY_CLIENT_ID}',
LIVE_UPDATE_APP_VERSION: '${process.env.LIVE_UPDATE_APP_VERSION}',
Expand Down
2 changes: 1 addition & 1 deletion src/app/core/services/refiner.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ export class RefinerService {
);
(window as typeof window & { _refiner: (eventName: string, payload: string) => void })._refiner(
'setProject',
environment.REFINER_NPS_PROJECT_ID
environment.REFINER_NPS_FORM_PROJECT
);
(window as typeof window & { _refiner: (eventName: string, payload: string) => void })._refiner(
'showForm',
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const environment = {
GOOGLE_MAPS_API_KEY: '',
FRESHCHAT_TOKEN: '',
SENTRY_DSN: '',
REFINER_NPS_PROJECT_ID: '',
REFINER_NPS_FORM_PROJECT: '',
REFINER_NPS_FORM_ID: '',
LAUNCH_DARKLY_CLIENT_ID: '',
LIVE_UPDATE_APP_VERSION: '',
Expand Down

0 comments on commit 97a416c

Please sign in to comment.