diff --git a/apps/trust/src/components/AuditRow.tsx b/apps/trust/src/components/AuditRow.tsx index 2858c7914..08b1d3a97 100644 --- a/apps/trust/src/components/AuditRow.tsx +++ b/apps/trust/src/components/AuditRow.tsx @@ -139,7 +139,7 @@ export function AuditRow(props: { audit: AuditRowFragment$key }) { icon={downloading ? Spinner : IconArrowInbox} onClick={() => void handleDownload()} > - {__("Download")} + {downloading ? __("Downloading") : __("Download")} ) : viewer diff --git a/apps/trust/src/components/DocumentRow.tsx b/apps/trust/src/components/DocumentRow.tsx index b67827763..edbf2c9bf 100644 --- a/apps/trust/src/components/DocumentRow.tsx +++ b/apps/trust/src/components/DocumentRow.tsx @@ -124,7 +124,7 @@ export function DocumentRow(props: { document: DocumentRowFragment$key }) { icon={downloading ? Spinner : IconArrowInbox} onClick={() => void handleDownload()} > - {__("Download")} + {downloading ? __("Downloading") : __("Download")} ) : viewer diff --git a/apps/trust/src/components/TrustCenterFileRow.tsx b/apps/trust/src/components/TrustCenterFileRow.tsx index 90727243b..de84d6fbb 100644 --- a/apps/trust/src/components/TrustCenterFileRow.tsx +++ b/apps/trust/src/components/TrustCenterFileRow.tsx @@ -128,7 +128,7 @@ export function TrustCenterFileRow(props: { icon={downloading ? Spinner : IconArrowInbox} onClick={() => void handleDownload()} > - {__("Download")} + {downloading ? __("Downloading") : __("Download")} ) : viewer