From a3dba6cc9db147ff4765fef648867e50878a6ac8 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Tue, 2 Dec 2025 15:22:02 -0600 Subject: [PATCH] refactor(helpercommands): removed the remove as reusabele --- .../logistics/helperCommands/helperPage.tsx | 28 +++++++++++-------- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/frontend/src/routes/_old/old/-components/logistics/helperCommands/helperPage.tsx b/frontend/src/routes/_old/old/-components/logistics/helperCommands/helperPage.tsx index 3f45e77..49dd763 100644 --- a/frontend/src/routes/_old/old/-components/logistics/helperCommands/helperPage.tsx +++ b/frontend/src/routes/_old/old/-components/logistics/helperCommands/helperPage.tsx @@ -3,17 +3,21 @@ import Relocate from "./commands/Relocate"; import RemoveAsNonReusable from "./commands/RemoveAsNonReusable"; export default function HelperPage() { - const url: string = window.location.host.split(":")[0]; - return ( -
-
- -
+ const url: string = window.location.host.split(":")[0]; + return ( +
+
+ +
-
- -
-
{url === "localhost" && }
-
- ); +
+ {url === "localhost" && ( +
+ + +
+ )} +
+
+ ); }