diff --git a/client/src/App/App.jsx b/client/src/App/App.jsx
index 4b80fb38e..88d32a870 100644
--- a/client/src/App/App.jsx
+++ b/client/src/App/App.jsx
@@ -23,7 +23,7 @@ import "./App.styles.scss";
import handleBeta from "../utils/betaHandler";
import Eula from "../components/eula/eula.component";
import InstanceRenderMgr from "../utils/instanceRenderMgr";
-import { ProductFruits } from "react-product-fruits";
+import ProductFruitsWrapper from "./ProductFruitsWrapper.jsx";
const ResetPassword = lazy(() => import("../pages/reset-password/reset-password.component"));
const ManagePage = lazy(() => import("../pages/manage/manage.page.container"));
@@ -147,19 +147,7 @@ export function App({ bodyshop, checkUserSession, currentUser, online, setOnline
/>
}
>
-
+
{
+ return (
+ currentUser?.authorized === true &&
+ currentUser?.email && (
+
+ )
+ );
+});
+
+export default ProductFruitsWrapper;