diff --git a/interface/src/app/main/Customizations.tsx b/interface/src/app/main/Customizations.tsx
index 87ac23822..2eb6f58f3 100644
--- a/interface/src/app/main/Customizations.tsx
+++ b/interface/src/app/main/Customizations.tsx
@@ -464,14 +464,7 @@ const Customizations = () => {
)}
{selectedDevice !== -1 &&
(rename ? (
-
- }
- variant="contained"
- onClick={() => renameDevice()}
- >
- {LL.UPDATE()}
-
+ <>
}
variant="outlined"
@@ -480,7 +473,14 @@ const Customizations = () => {
>
{LL.CANCEL()}
-
+ }
+ variant="outlined"
+ onClick={() => renameDevice()}
+ >
+ {LL.RENAME()}
+
+ >
) : (
}
@@ -716,16 +716,18 @@ const Customizations = () => {
)}
-
- }
- variant="outlined"
- color="error"
- onClick={() => setConfirmReset(true)}
- >
- {LL.RESET(0)}
-
-
+ {!rename && (
+
+ }
+ variant="outlined"
+ color="error"
+ onClick={() => setConfirmReset(true)}
+ >
+ {LL.RESET(0)}
+
+
+ )}
)}
{renderResetDialog()}