diff --git a/src/components/SelectionListWithSections/Search/ExportedIconCell.tsx b/src/components/SelectionListWithSections/Search/ExportedIconCell.tsx index a58c117021fc..7e9a49c8f5e0 100644 --- a/src/components/SelectionListWithSections/Search/ExportedIconCell.tsx +++ b/src/components/SelectionListWithSections/Search/ExportedIconCell.tsx @@ -53,7 +53,10 @@ function ExportedIconCell({reportID, hash}: ExportedIconCellProps) { } if (isExportedToIntegrationAction(action)) { - const label = getOriginalMessage(action)?.label; + const message = getOriginalMessage(action); + const label = message?.label; + const type = message?.type; + isExportedToCsv = isExportedToCsv || type === CONST.EXPORT_TEMPLATE; isExportedToXero = isExportedToXero || label === CONST.EXPORT_LABELS.XERO; isExportedToNetsuite = isExportedToNetsuite || label === CONST.EXPORT_LABELS.NETSUITE; isExportedToQuickbooksOnline = isExportedToQuickbooksOnline || label === CONST.EXPORT_LABELS.QBO;