From 93743552f9353e85bdfa365882b41f47fcea325c Mon Sep 17 00:00:00 2001 From: Doug Martin Date: Fri, 5 Apr 2024 02:13:55 -0400 Subject: [PATCH] fix: Copy/paste error with main menu button confirm dialog [PT-187361590] --- src/components/app.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/app.tsx b/src/components/app.tsx index 8c9ec4e..bb0489f 100644 --- a/src/components/app.tsx +++ b/src/components/app.tsx @@ -388,7 +388,7 @@ export const App = () => { }; const handleReturnToMainMenu = () => { - if (confirm("Are you sure you want to reset?\n\nAny changes you have made will be lost.")) { + if (confirm("Are you sure you want to go back to the main menu?\n\nAny changes you have made will be lost.")) { setGraph({nodes: [], edges: []}); setViewMode(undefined); }