diff --git a/webapp/src/app.tsx b/webapp/src/app.tsx index 2d07f0917..dc4b42cc8 100644 --- a/webapp/src/app.tsx +++ b/webapp/src/app.tsx @@ -93,7 +93,9 @@ const App = React.memo((): JSX.Element => { dispatch(fetchLanguage()) dispatch(fetchMe()) dispatch(fetchClientConfig()) - history.replace(window.location.pathname.replace((window as any).frontendBaseURL, '')) + if (Utils.isFocalboardPlugin()) { + history.replace(window.location.pathname.replace((window as any).frontendBaseURL, '')) + } }, []) if (!inPluginLegacy) {