Skip to content

Commit 31a8f54

Browse files
authored
[Cherry-Pick-Main][UI][SDL-5855] Fixed demo link workflow to cover cases when browser has an active password manager
1 parent 57ae530 commit 31a8f54

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

src/ui/src/components/Layout/LayoutConstants.js

-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,6 @@ const MENU_ITEMS_EXTERNAL = [
194194
title: i18n.t("layout:menu-external.demo-title"),
195195
tooltip: i18n.t("layout:menu-external.demo-tooltip"),
196196
id: "navDemos",
197-
target: "_blank",
198197
orderIndex: 1,
199198
isHidden: false,
200199
iconfn: (iconProps) => <DriveEtaIcon {...iconProps} />,

src/ui/src/containers/Demo/index.js

+2-7
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,14 @@ License along with SensiML Piccolo AI. If not, see <https://www.gnu.org/licenses
1818
*/
1919

2020
import React, { useEffect } from "react";
21-
import { useDispatch } from "react-redux";
22-
import { Redirect } from "react-router-dom";
23-
import { resetApp } from "store/auth/actions";
2421
import { ROUTES } from "routers";
2522

2623
const Demo = () => {
27-
const dispatch = useDispatch();
28-
2924
useEffect(() => {
30-
dispatch(resetApp());
25+
window.open(`${ROUTES.AUTH.child.LOGIN.fullPath}?demo`, "_blank");
3126
}, []);
3227

33-
return <Redirect to={`${ROUTES.AUTH.child.LOGIN.fullPath}?demo`} />;
28+
return <div />;
3429
};
3530

3631
export default Demo;

0 commit comments

Comments
 (0)