Skip to content

Commit

Permalink
Merge pull request #779 from storyblok/hotfix/int-1212-fix-fetch-func…
Browse files Browse the repository at this point in the history
…tion

fix(int-1212): Fix issue with fetch fn not using provided in params
  • Loading branch information
ademarCardoso authored Feb 8, 2024
2 parents 6e0f350 + 8016ea7 commit 3f9fb78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sbFetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class SbFetch {
}

try {
const fetchResponse = await fetch(`${url}`, {
const fetchResponse = await this.fetch(`${url}`, {
method,
headers: this.headers,
body,
Expand Down

0 comments on commit 3f9fb78

Please sign in to comment.