File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
react-native-version-check-expo/src
react-native-version-check/src/providers Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,9 @@ if (process.env.RNVC_ENV === 'test') {
1111 currentVersion : '0.0.1' ,
1212 } ;
1313} else {
14- const manifest = Constants . manifest ? Constants . manifest : Constants . manifest2 . extra . expoClient ;
14+ const manifest = Constants . manifest
15+ ? Constants . manifest
16+ : Constants . manifest2 . extra . expoClient ;
1517 const {
1618 version = null ,
1719 android : { versionCode = null , package : androidPackageName = null } = { } ,
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ class PlayStoreProvider implements IProvider {
3131
3232 opt . fetchOptions = {
3333 headers : { 'sec-fetch-site' : 'same-origin' } ,
34- ...opt . fetchOptions
35- }
34+ ...opt . fetchOptions ,
35+ } ;
3636
3737 const storeUrl = `https://play.google.com/store/apps/details?id=${ opt . packageName } &hl=en&gl=US` ;
3838
You can’t perform that action at this time.
0 commit comments