Skip to content

Commit 64d244c

Browse files
committed
npm run lint:fix
1 parent a168622 commit 64d244c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

packages/react-native-version-check-expo/src/ExpoVersionInfo.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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 } = {},

packages/react-native-version-check/src/providers/playStore.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)