From 6d0630d35122717a484469b25e78fad35dbaa825 Mon Sep 17 00:00:00 2001 From: Bernhard Owen Josephus Date: Fri, 7 Jun 2024 17:17:35 +0800 Subject: [PATCH] lint --- src/libs/actions/Report.ts | 1 - .../shouldIgnoreSelectionWhenUpdatedManually/index.android.tsx | 2 +- src/libs/shouldIgnoreSelectionWhenUpdatedManually/index.tsx | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/libs/actions/Report.ts b/src/libs/actions/Report.ts index 1262e8af7d44..01025f21aa78 100644 --- a/src/libs/actions/Report.ts +++ b/src/libs/actions/Report.ts @@ -1027,7 +1027,6 @@ function navigateToAndOpenReportWithAccountIDs(participantAccountIDs: number[]) */ function navigateToAndOpenChildReport(childReportID = '0', parentReportAction: Partial = {}, parentReportID = '0') { if (childReportID !== '0') { - openReport(childReportID); Navigation.navigate(ROUTES.REPORT_WITH_ID.getRoute(childReportID)); } else { const participantAccountIDs = [...new Set([currentUserAccountID, Number(parentReportAction.actorAccountID)])]; diff --git a/src/libs/shouldIgnoreSelectionWhenUpdatedManually/index.android.tsx b/src/libs/shouldIgnoreSelectionWhenUpdatedManually/index.android.tsx index d786760e8691..289c56ad69be 100644 --- a/src/libs/shouldIgnoreSelectionWhenUpdatedManually/index.android.tsx +++ b/src/libs/shouldIgnoreSelectionWhenUpdatedManually/index.android.tsx @@ -1,4 +1,4 @@ -import type ShouldIgnoreSelectionWhenUpdatedManually from './types.ts'; +import type ShouldIgnoreSelectionWhenUpdatedManually from './types'; const shouldIgnoreSelectionWhenUpdatedManually: ShouldIgnoreSelectionWhenUpdatedManually = true; diff --git a/src/libs/shouldIgnoreSelectionWhenUpdatedManually/index.tsx b/src/libs/shouldIgnoreSelectionWhenUpdatedManually/index.tsx index 0e7c69b39386..744a94aa1f32 100644 --- a/src/libs/shouldIgnoreSelectionWhenUpdatedManually/index.tsx +++ b/src/libs/shouldIgnoreSelectionWhenUpdatedManually/index.tsx @@ -1,4 +1,4 @@ -import type ShouldIgnoreSelectionWhenUpdatedManually from './types.ts'; +import type ShouldIgnoreSelectionWhenUpdatedManually from './types'; const shouldIgnoreSelectionWhenUpdatedManually: ShouldIgnoreSelectionWhenUpdatedManually = false;