@gen3/core 0.10.65 → 0.10.67

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/esm/index.js CHANGED
@@ -2333,7 +2333,7 @@ const fetchFencePresignedURL = async ({ guid, method = 'GET', onAbort = ()=>null
2333
2333
  }
2334
2334
  if (csrfToken) headers.set('X-CSRF-Token', csrfToken);
2335
2335
  if (accessToken) headers.set('Authorization', `Bearer ${accessToken}`);
2336
- const url = `${GEN3_FENCE_API}/user/download/${guid}`;
2336
+ const url = `${GEN3_FENCE_API}/user/data/download/${guid}`;
2337
2337
  try {
2338
2338
  const response = await fetch(url, {
2339
2339
  method: method,