diff --git a/web/components/admin/config/server/EditStorage.tsx b/web/components/admin/config/server/EditStorage.tsx index 4fa415bf4..2923429e2 100644 --- a/web/components/admin/config/server/EditStorage.tsx +++ b/web/components/admin/config/server/EditStorage.tsx @@ -126,6 +126,9 @@ export default function EditStorage() { const handleSave = async () => { setSubmitStatus(createInputStatus(STATUS_PROCESSING)); const postValue = formDataValues; + if (postValue?.servingEndpoint) { + postValue.servingEndpoint = postValue?.servingEndpoint?.replace(/\/+$/g, ''); + } await postConfigUpdateToAPI({ apiPath: API_S3_INFO,