From e9d1c66898859d82d10d248bfd8d07457a7f7293 Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Mon, 17 Jun 2024 00:25:58 -0500 Subject: [PATCH] Augment outdated confirm text --- src/admin/AdminOutdatedClient.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/admin/AdminOutdatedClient.tsx b/src/admin/AdminOutdatedClient.tsx index e9c093ee..85e017ae 100644 --- a/src/admin/AdminOutdatedClient.tsx +++ b/src/admin/AdminOutdatedClient.tsx @@ -42,7 +42,7 @@ export default function AdminOutdatedClient({ className="primary" onClick={async () => { // eslint-disable-next-line max-len - if (window.confirm(`Are you sure you want to sync the oldest ${UPDATE_BATCH_SIZE} photos?`)) { + if (window.confirm(`Are you sure you want to sync the oldest ${UPDATE_BATCH_SIZE} photos? This action cannot be undone.`)) { const photosToSync = photos .slice(0, UPDATE_BATCH_SIZE) .map(photo => photo.id);