Skip to content

Commit

Permalink
Merge pull request Expensify#35920 from Expensify/cmartins-fixLint
Browse files Browse the repository at this point in the history
Fix lint on main
  • Loading branch information
puneetlath authored Feb 6, 2024
2 parents a068ac5 + cadc496 commit c908d76
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/MenuItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,11 @@ function MenuItem(
onPress(event);
return;
}
singleExecution(waitForNavigate(() => onPress(event)))();
singleExecution(
waitForNavigate(() => {
onPress(event);
}),
)();
}
};

Expand Down

0 comments on commit c908d76

Please sign in to comment.