@gen3/core 0.10.65 → 0.10.66

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/cjs/index.js CHANGED
@@ -2353,7 +2353,7 @@ const fetchFencePresignedURL = async ({ guid, method = 'GET', onAbort = ()=>null
2353
2353
  }
2354
2354
  if (csrfToken) headers.set('X-CSRF-Token', csrfToken);
2355
2355
  if (accessToken) headers.set('Authorization', `Bearer ${accessToken}`);
2356
- const url = `${GEN3_FENCE_API}/user/download/${guid}`;
2356
+ const url = `${GEN3_FENCE_API}/user/data/download/${guid}`;
2357
2357
  try {
2358
2358
  const response = await fetch(url, {
2359
2359
  method: method,