diff --git a/client/src/App/App.jsx b/client/src/App/App.jsx index d15af2f2d..2f4583c67 100644 --- a/client/src/App/App.jsx +++ b/client/src/App/App.jsx @@ -165,6 +165,8 @@ export function App({ > ({ export function Manage({conflict, bodyshop,enableJoyRide,joyRideSteps,setJoyRideFinished}) { const {t} = useTranslation(); const [chatVisible] = useState(false); - +const [tours, setTours] = useState([]) useEffect(() => { @@ -526,9 +526,7 @@ export function Manage({conflict, bodyshop,enableJoyRide,joyRideSteps,setJoyRide imex: t('titles.imexonline'), rome: t('titles.romeonline'), promanager: t('titles.promanager'), - })} - ${ - import.meta.env.VITE_APP_GIT_SHA_DATE - }`} + })} - ${import.meta.env.VITE_APP_GIT_SHA_DATE}`}
@@ -536,6 +534,31 @@ export function Manage({conflict, bodyshop,enableJoyRide,joyRideSteps,setJoyRide Disclaimer & Notices + {InstanceRenderManager({ + promanager: ( + + + + + {tours.map((tour) => ( + window.productFruits.api.tours.tryStartTour(tour.id)} + > + {tour.name} + + ))} + + + + ), + })}