diff --git a/src/apps/components/AppFrame/useAppActions.ts b/src/apps/components/AppFrame/useAppActions.ts index 31cbc719f..97468c31c 100644 --- a/src/apps/components/AppFrame/useAppActions.ts +++ b/src/apps/components/AppFrame/useAppActions.ts @@ -112,7 +112,10 @@ export const useAppActions = ( case "updateRouting": { const { newRoute, actionId } = action.payload; - const appCompletePath = appPath(encodeURIComponent(appId)); + const appCompletePath = new URL( + appPath(encodeURIComponent(appId)), + getAppMountUri(), + ).href; window.history.pushState(null, "", appCompletePath + newRoute);