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 deleteBetaCookie = () => {
+ const cookieExists = document.cookie.split("; ").some((row) => row.startsWith(`betaSwitchImex=`));
+ if (cookieExists) {
+ const domain = window.location.hostname.split(".").slice(-2).join(".");
+ document.cookie = `betaSwitchImex=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; domain=.${domain}`;
+ console.log(`betaSwitchImex cookie deleted`);
+ } else {
+ console.log(`betaSwitchImex cookie does not exist`);
+ }
};
+ deleteBetaCookie();
+
const accountingChildren = [];
if (
@@ -695,31 +695,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 (