From 1f6462be389c81e7dcec7c27e881fe9f7920ee28 Mon Sep 17 00:00:00 2001 From: proddy Date: Mon, 10 Nov 2025 21:22:24 +0100 Subject: [PATCH] rename reset to "remove all", move top of screen and fix messages when auto-restarting --- interface/src/app/main/Customizations.tsx | 25 ++++++++++------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/interface/src/app/main/Customizations.tsx b/interface/src/app/main/Customizations.tsx index 2f340de14..2b85bf26f 100644 --- a/interface/src/app/main/Customizations.tsx +++ b/interface/src/app/main/Customizations.tsx @@ -364,6 +364,7 @@ const Customizations = () => { toast.error((error as Error).message); } finally { setConfirmReset(false); + setRestarting(true); } }, [sendResetCustomizations, LL]); @@ -519,6 +520,14 @@ const Customizations = () => { {LL.RENAME()} ))} + ); @@ -687,7 +696,7 @@ const Customizations = () => { open={confirmReset} onClose={() => setConfirmReset(false)} > - {LL.RESET(1)} + {LL.REMOVE_ALL()} {LL.CUSTOMIZATIONS_RESET()} @@ -753,18 +762,6 @@ const Customizations = () => { )} - {!rename && ( - - - - )} )} {renderResetDialog()}