Skip to content

Commit

Permalink
Fix rewards baseURL (#1691)
Browse files Browse the repository at this point in the history
* update changes

* add props type

* update version and remove on dash

* fixed base url for rewards

* removed junk file

---------

Co-authored-by: corlard3y <[email protected]>
  • Loading branch information
rohitmalhotra1420 and corlard3y authored Jul 3, 2024
1 parent 74ec6ab commit 45775aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/queries/baseURL.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import { appConfig } from 'config';
export const getRewardsBaseURL = () => {
switch (appConfig.appEnv) {
case 'prod':
return `https://us-east1-push-stage-apps.cloudfunctions.net/pushpointsrewardsystem`;
return `https://us-east1-push-prod-apps.cloudfunctions.net/pushpointsrewardsystem`;
case 'staging':
return `https://us-east1-push-dev-apps.cloudfunctions.net/pushpointsrewardsystem`;
return `https://us-east1-push-stage-apps.cloudfunctions.net/pushpointsrewardsystem`;
case 'dev':
return `https://us-east1-push-dev-apps.cloudfunctions.net/helloWorld`;
default:
Expand Down

0 comments on commit 45775aa

Please sign in to comment.