Skip to content

Commit

Permalink
Merge pull request #1804 from ever-co/fix/api-calls
Browse files Browse the repository at this point in the history
Fix/api calls
  • Loading branch information
evereq authored Nov 16, 2023
2 parents e4d99c5 + 784a3b2 commit 60a310b
Show file tree
Hide file tree
Showing 8 changed files with 267 additions and 254 deletions.
2 changes: 1 addition & 1 deletion apps/mobile/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ android {
applicationId 'ever.team'
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 9
versionCode 10
versionName "0.1.0"
}

Expand Down
4 changes: 2 additions & 2 deletions apps/mobile/app/config/config.dev.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export default {
API_URL: 'https://apistage.gauzy.co/api'
};
API_URL: "https://apistage.gauzy.co/api",
}
6 changes: 2 additions & 4 deletions apps/mobile/app/config/config.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
* https://reactnative.dev/docs/security#storing-sensitive-info
*/

import { GAUZY_API_URL } from '@env';

export default {
API_URL: `${GAUZY_API_URL}/api`
};
API_URL: `${process.env.GAUZY_API_URL}/api`,
}
Loading

0 comments on commit 60a310b

Please sign in to comment.