diff --git a/frontend/src/components/Sidebar/index.jsx b/frontend/src/components/Sidebar/index.jsx index 4e0cfe87..4a074a34 100644 --- a/frontend/src/components/Sidebar/index.jsx +++ b/frontend/src/components/Sidebar/index.jsx @@ -98,17 +98,7 @@ export default function Sidebar() { Feedback form

- - -

- Managed cloud hosting -

-
- + @@ -201,10 +191,11 @@ export function SidebarMobileHeader() { className={`z-99 fixed top-0 left-0 transition-all duration-500 w-[100vw] h-[100vh]`} >
setShowSidebar(false)} />
- - -

- Managed cloud hosting -

-
+
@@ -354,3 +336,19 @@ function LogoutButton() { ); } + +function ManagedHosting() { + if (window.location.origin.includes(".useanything.com")) return null; + return ( + + +

+ Managed cloud hosting +

+
+ ); +}