We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b637d0e commit e7da419Copy full SHA for e7da419
client/src/main.tsx
@@ -64,7 +64,11 @@ async function renderApp() {
64
init(applicationInfoStore.getState().helpHub.commandBar.orgId!);
65
}
66
67
- if (!publicRoutes.includes(window.location.pathname) && !authenticationStore.getState().sessionHasBeenFetched) {
+ if (
68
+ !isEmbeddedWorkflowBuilder &&
69
+ !publicRoutes.includes(window.location.pathname) &&
70
+ !authenticationStore.getState().sessionHasBeenFetched
71
+ ) {
72
const result = await authenticationStore.getState().getAccount();
73
74
if (!result && window.location.pathname !== '/login') {
0 commit comments