From b211bbec7b69cc217c7d7c2e870cd9bec92ddfb0 Mon Sep 17 00:00:00 2001 From: Elon Gliksberg Date: Thu, 5 Sep 2024 07:27:52 +0300 Subject: [PATCH] Updated the message prompt in project deletion. (#6482) Signed-off-by: Elon Gliksberg --- plugins/tracker-resources/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/tracker-resources/src/index.ts b/plugins/tracker-resources/src/index.ts index 6675385244..59ba98e91b 100644 --- a/plugins/tracker-resources/src/index.ts +++ b/plugins/tracker-resources/src/index.ts @@ -279,7 +279,7 @@ async function deleteProject (project: Project | undefined): Promise { showPopup(MessageBox, { label: tracker.string.DeleteProject, labelProps: { name: project.name }, - message: tracker.string.ArchiveProjectConfirm, + message: tracker.string.DeleteProjectConfirm, action: async () => { // void client.update(project, { archived: true }) const client = getClient()