refactor(helpercommands): removed the remove as reusabele

This commit is contained in:
2025-12-02 15:22:02 -06:00
parent 320dd47aea
commit a3dba6cc9d

View File

@@ -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 (
<div className="flex flex-wrap m-2 justify-center">
<div className="m-1">
<Bookin />
</div>
const url: string = window.location.host.split(":")[0];
return (
<div className="flex flex-wrap m-2 justify-center">
<div className="m-1">
<Bookin />
</div>
<div className="m-1">
<RemoveAsNonReusable />
</div>
<div className="m-1">{url === "localhost" && <Relocate />}</div>
</div>
);
<div className="m-1">
{url === "localhost" && (
<div className="m-1">
<RemoveAsNonReusable />
<Relocate />
</div>
)}
</div>
</div>
);
}