Skip to content

Commit

Permalink
Merge pull request #16667 from Expensify/stites-allowIOUReactions
Browse files Browse the repository at this point in the history
Un-restrict IOU reactions
  • Loading branch information
stitesExpensify authored Apr 11, 2023
2 parents 35a578c + 428fc36 commit 812ef4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/home/report/ContextMenu/ContextMenuActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const CONTEXT_MENU_TYPES = {
export default [
{
shouldKeepOpen: true,
shouldShow: (type, reportAction) => type === CONTEXT_MENU_TYPES.REPORT_ACTION && _.has(reportAction, 'message') && reportAction.actionName !== CONST.REPORT.ACTIONS.TYPE.IOU,
shouldShow: (type, reportAction) => type === CONTEXT_MENU_TYPES.REPORT_ACTION && _.has(reportAction, 'message'),
renderContent: (closePopover, {
reportID, reportAction, close: closeManually, openContextMenu,
}) => {
Expand Down

0 comments on commit 812ef4d

Please sign in to comment.