Skip to content

Commit

Permalink
npm run lint:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kimxogus committed Jan 1, 2023
1 parent a168622 commit 64d244c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ if (process.env.RNVC_ENV === 'test') {
currentVersion: '0.0.1',
};
} else {
const manifest = Constants.manifest ? Constants.manifest : Constants.manifest2.extra.expoClient;
const manifest = Constants.manifest
? Constants.manifest
: Constants.manifest2.extra.expoClient;
const {
version = null,
android: { versionCode = null, package: androidPackageName = null } = {},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ class PlayStoreProvider implements IProvider {

opt.fetchOptions = {
headers: { 'sec-fetch-site': 'same-origin' },
...opt.fetchOptions
}
...opt.fetchOptions,
};

const storeUrl = `https://play.google.com/store/apps/details?id=${opt.packageName}&hl=en&gl=US`;

Expand Down

0 comments on commit 64d244c

Please sign in to comment.