From a94c95ec654332708ddf91c18015248ce4ad3f80 Mon Sep 17 00:00:00 2001 From: Brian Whitney Date: Wed, 18 Dec 2024 12:48:38 -0800 Subject: [PATCH] update wording --- .../components/Modal/CopyFileManifest/index.tsx | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/packages/core/components/Modal/CopyFileManifest/index.tsx b/packages/core/components/Modal/CopyFileManifest/index.tsx index 3d998acc..3e8b345f 100644 --- a/packages/core/components/Modal/CopyFileManifest/index.tsx +++ b/packages/core/components/Modal/CopyFileManifest/index.tsx @@ -98,15 +98,12 @@ export default function CopyFileManifest({ onDismiss }: ModalProps) { const body = (

- Files copied to the local NAS cache (VAST) are stored with a 180-day lease, after - which they revert to cloud-only. To renew the lease, simply reselect the files and - confirm the copy. + Files copied to the local NAS (Vast) are stored with a 180-day expiration, after + which they revert to cloud-only. To extend the expiration, simply reselect the files + and confirm the update.

- {renderTable( - filesInLocalCache, - "Files that are already in Local Cache (VAST) to renew lease for" - )} - {renderTable(filesNotInLocalCache, "Files to Download to Local Cache (VAST)")} + {renderTable(filesInLocalCache, "Files that are already on Vast: Extend expiration")} + {renderTable(filesNotInLocalCache, "Files to download to Vast")}
{isLoading ? "Calculating..." : totalSize || "0 B"} @@ -139,7 +136,7 @@ export default function CopyFileManifest({ onDismiss }: ModalProps) {
} onDismiss={onDismiss} - title="Copy Files to NAS Cache (VAST)" + title="Copy Files to Local NAS (Vast)" /> ); }