Skip to content

Commit

Permalink
Merge pull request #50807 from truph01/fix/50662
Browse files Browse the repository at this point in the history
fix: Incorrect tag name on the confirmation page
  • Loading branch information
MariaHCD authored Oct 17, 2024
2 parents 0b05f53 + 3300517 commit a0ebba0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/ReportActionItem/MoneyRequestView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ function MoneyRequestView({report, shouldShowAnimatedBackground, readonly = fals
});
const [policy] = useOnyx(`${ONYXKEYS.COLLECTION.POLICY}${policyID}`);
const [policyCategories] = useOnyx(`${ONYXKEYS.COLLECTION.POLICY_CATEGORIES}${policyID}`);
const [policyTagList] = useOnyx(`${ONYXKEYS.COLLECTION.POLICY_TAGS}${policyID}`);
const targetPolicyID = updatedTransaction?.reportID ? ReportUtils.getReport(updatedTransaction?.reportID)?.policyID : policyID;
const [policyTagList] = useOnyx(`${ONYXKEYS.COLLECTION.POLICY_TAGS}${targetPolicyID}`);
const [parentReportActions] = useOnyx(`${ONYXKEYS.COLLECTION.REPORT_ACTIONS}${parentReportID}`, {
canEvict: false,
});
Expand Down

0 comments on commit a0ebba0

Please sign in to comment.