remove slash from cache key value delete http call (#3466)

This commit is contained in:
Jonathan Dobson
2025-09-18 12:01:39 -04:00
committed by GitHub
parent d2e2e9af74
commit 07eaaf6682

View File

@@ -379,7 +379,7 @@ function Workspace({
const client = await getClient(credentialGetter, "sans-api-v1");
const encodedCacheKeyValue = encodeURIComponent(cacheKeyValue);
return client.delete(
`/scripts/${workflowPermanentId}/value/?cache-key-value=${encodedCacheKeyValue}`,
`/scripts/${workflowPermanentId}/value?cache-key-value=${encodedCacheKeyValue}`,
);
},
onSuccess: () => {