diff --git a/frontend/src/component/common/index.jsx b/frontend/src/component/common/index.jsx index 900a0231de..4b95d29890 100644 --- a/frontend/src/component/common/index.jsx +++ b/frontend/src/component/common/index.jsx @@ -38,7 +38,9 @@ export const AppsLinkList = ({ apps }) => ( { }; const deleteApplication = async (appName: string) => { - const path = `${URI}/${appName}`; + const path = `${URI}/${encodeURIComponent(appName)}`; const req = createRequest(path, { method: 'DELETE' }); try {