Skip to content

Commit

Permalink
fix: covered one more case
Browse files Browse the repository at this point in the history
  • Loading branch information
kubabutkiewicz committed Mar 8, 2024
1 parent ad4ddd8 commit 45b8ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/home/report/ReportActionItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -880,7 +880,7 @@ export default withOnyx<ReportActionItemProps, ReportActionItemOnyxProps>({
iouReport: {
key: ({action}) => {
const iouReportID = ReportActionsUtils.getIOUReportIDFromReportActionPreview(action);
return `${ONYXKEYS.COLLECTION.REPORT}${iouReportID ?? ''}`;
return `${ONYXKEYS.COLLECTION.REPORT}${iouReportID ?? 0}`;
},
initialValue: {} as OnyxTypes.Report,
},
Expand Down

0 comments on commit 45b8ddd

Please sign in to comment.