Skip to content

Commit

Permalink
Merge branch 'develop' into chore/release_0.10.67
Browse files Browse the repository at this point in the history
  • Loading branch information
craigrbarnes authored Dec 19, 2024
2 parents 7ece801 + 37cc9a3 commit 30e05cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/utils/fetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export const fetchFencePresignedURL = async ({
throw new HTTPError(response.status, errorMessage, errorData);
}

return await response.json();
return (await response.json())['url'];
} catch (error: unknown) {
if (error instanceof Error) {
if (error.name === 'AbortError') {
Expand Down

0 comments on commit 30e05cd

Please sign in to comment.