Skip to content

Commit f4abfa0

Browse files
authored
Fix syntax error in signal getter
1 parent 13d77ae commit f4abfa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const StubRequest = /* @__PURE__ */ (() => {
2929
}
3030

3131
get signal() {
32-
return (this._signal ??= new AbortController().signal;
32+
return (this._signal ??= new AbortController().signal);
3333
}
3434

3535
get cache() {

0 commit comments

Comments
 (0)