Skip to content

Commit

Permalink
Merge branch 'Expensify:main' into Create-Automation-for-when-main-fails
Browse files Browse the repository at this point in the history
  • Loading branch information
rayane-djouah authored Feb 6, 2024
2 parents 8430595 + c908d76 commit 7450cc4
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 7450cc4

Please sign in to comment.