diff --git a/client/src/App/App.jsx b/client/src/App/App.jsx
index 6fe558910..2a0b679c6 100644
--- a/client/src/App/App.jsx
+++ b/client/src/App/App.jsx
@@ -18,7 +18,6 @@ import { checkUserSession } from "../redux/user/user.actions";
import { selectBodyshop, selectCurrentEula, selectCurrentUser } from "../redux/user/user.selectors";
import PrivateRoute from "../components/PrivateRoute";
import "./App.styles.scss";
-import handleBeta from "../utils/handleBeta";
import Eula from "../components/eula/eula.component";
import InstanceRenderMgr from "../utils/instanceRenderMgr";
import ProductFruitsWrapper from "./ProductFruitsWrapper.jsx";
@@ -108,8 +107,6 @@ export function App({ bodyshop, checkUserSession, currentUser, online, setOnline
return ;
}
- handleBeta();
-
if (!online) {
return (
{
- const isBeta = checkBeta();
- setBetaSwitch(isBeta);
- }, []);
-
- const betaSwitchChange = (checked) => {
- setBeta(checked);
- setBetaSwitch(checked);
- handleBeta();
- };
-
const accountingChildren = [];
if (
@@ -695,31 +682,6 @@ function Header({
}
];
- InstanceRenderManager({
- executeFunction: true,
- args: [],
- imex: () => {
- menuItems.push({
- key: "beta-switch",
- id: "header-beta-switch",
- style: { marginLeft: "auto" },
- label: (
-
-
- Try the new app
-
-
- )
- });
- }
- });
-
return (