Skip to content

Commit f3c93d8

Browse files
committed
Disable lint warnings
1 parent 6ff5875 commit f3c93d8

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/libs/actions/Report.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,15 +360,19 @@ Onyx.connect({
360360
},
361361
});
362362

363+
// This value is used inside openReportFromDeepLink function, which triggered inside setup/hybridApp -> Linking.addEventListener method
363364
let currentOnboardingPurposeSelected: OnyxEntry<OnboardingPurpose>;
365+
// eslint-disable-next-line rulesdir/no-onyx-connect
364366
Onyx.connect({
365367
key: ONYXKEYS.ONBOARDING_PURPOSE_SELECTED,
366368
callback: (value) => {
367369
currentOnboardingPurposeSelected = value;
368370
},
369371
});
370372

373+
// This value is used inside openReportFromDeepLink function, which triggered inside setup/hybridApp -> Linking.addEventListener method
371374
let currentOnboardingCompanySize: OnyxEntry<OnboardingCompanySize>;
375+
// eslint-disable-next-line rulesdir/no-onyx-connect
372376
Onyx.connect({
373377
key: ONYXKEYS.ONBOARDING_COMPANY_SIZE,
374378
callback: (value) => {

0 commit comments

Comments
 (0)