We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7351dda commit f22d6e9Copy full SHA for f22d6e9
src/fetch_request.js
@@ -20,7 +20,8 @@ export class FetchRequest {
20
}
21
22
const fetch = (this.responseKind === 'turbo-stream' && window.Turbo)
23
- ? window.Turbo.fetch : window.fetch
+ ? window.Turbo.fetch
24
+ : window.fetch
25
26
const response = new FetchResponse(await fetch(this.url, this.fetchOptions))
27
0 commit comments