Skip to content

Commit f22d6e9

Browse files
committed
Fix linting
1 parent 7351dda commit f22d6e9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/fetch_request.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ export class FetchRequest {
2020
}
2121

2222
const fetch = (this.responseKind === 'turbo-stream' && window.Turbo)
23-
? window.Turbo.fetch : window.fetch
23+
? window.Turbo.fetch
24+
: window.fetch
2425

2526
const response = new FetchResponse(await fetch(this.url, this.fetchOptions))
2627

0 commit comments

Comments
 (0)