Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nkdengineer committed Sep 24, 2024
1 parent 3ca7e4c commit b742ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/home/report/ReportActionsView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ function ReportActionsView({
// Get a sorted array of reportActions for both the current report and the transaction thread report associated with this report (if there is one)
// so that we display transaction-level and report-level report actions in order in the one-transaction view
const combinedReportActions = useMemo(
() => ReportActionsUtils.getCombinedReportActions(reportActionsToDisplay, transactionThreadReportID ?? null, transactionThreadReportActions as OnyxTypes.ReportAction[]),
() => ReportActionsUtils.getCombinedReportActions(reportActionsToDisplay, transactionThreadReportID ?? null, transactionThreadReportActions! as OnyxTypes.ReportAction[]),

Check failure on line 205 in src/pages/home/report/ReportActionsView.tsx

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

This assertion is unnecessary since it does not change the type of the expression

Check failure on line 205 in src/pages/home/report/ReportActionsView.tsx

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

Forbidden non-null assertion

Check failure on line 205 in src/pages/home/report/ReportActionsView.tsx

View workflow job for this annotation

GitHub Actions / ESLint check

This assertion is unnecessary since it does not change the type of the expression

Check failure on line 205 in src/pages/home/report/ReportActionsView.tsx

View workflow job for this annotation

GitHub Actions / ESLint check

Forbidden non-null assertion
[reportActionsToDisplay, transactionThreadReportActions, transactionThreadReportID],
);

Expand Down

0 comments on commit b742ddd

Please sign in to comment.