Encode appID when updateRouting action handled (#3064)
This commit is contained in:
parent
83962d6e93
commit
7321ca959f
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ const useHandleUpdateRoutingAction = (appId: string) => ({
|
||||||
|
|
||||||
const exactLocation = urlJoin(
|
const exactLocation = urlJoin(
|
||||||
getAppMountUri(),
|
getAppMountUri(),
|
||||||
`apps/${appId}/app`,
|
`apps/${encodeURIComponent(appId)}/app`,
|
||||||
action.payload.newRoute,
|
action.payload.newRoute,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue