Skip to content

Commit 9388b6b

Browse files
authored
Merge pull request Expensify#69091 from shubham1206agra/fix-eslint-4
[NoQA] Fixed ESLint warning max count
2 parents a65b1bb + b7e139d commit 9388b6b

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"test:debug": "TZ=utc NODE_OPTIONS='--inspect-brk --experimental-vm-modules' jest --runInBand",
4747
"perf-test": "NODE_OPTIONS=--experimental-vm-modules npx reassure",
4848
"typecheck": "NODE_OPTIONS=--max_old_space_size=8192 tsc",
49-
"lint": "NODE_OPTIONS=--max_old_space_size=8192 eslint . --max-warnings=243 --cache --cache-location=node_modules/.cache/eslint",
49+
"lint": "NODE_OPTIONS=--max_old_space_size=8192 eslint . --max-warnings=231 --cache --cache-location=node_modules/.cache/eslint",
5050
"lint-changed": "NODE_OPTIONS=--max_old_space_size=8192 ./scripts/lintChanged.sh",
5151
"lint-watch": "npx eslint-watch --watch --changed",
5252
"shellcheck": "./scripts/shellCheck.sh",

src/pages/home/report/ReportFooter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ function ReportFooter({
163163
createTaskAndNavigate(report.reportID, title, '', assignee?.login ?? '', assignee?.accountID, assigneeChatReport, report.policyID, true, quickAction);
164164
return true;
165165
},
166-
[allPersonalDetails, availableLoginsList, currentUserEmail, report.policyID, report.reportID],
166+
[allPersonalDetails, availableLoginsList, currentUserEmail, quickAction, report.policyID, report.reportID],
167167
);
168168

169169
const onSubmitComment = useCallback(

src/pages/settings/InitialSettingsPage.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ function InitialSettingsPage({currentUserPersonalDetails}: InitialSettingsPagePr
206206
styles.accountSettingsSectionContainer,
207207
styles.badgeSuccess,
208208
privateSubscription?.errors,
209+
stripeCustomerId,
209210
freeTrialText,
210211
]);
211212

0 commit comments

Comments
 (0)