Skip to content

Commit d202427

Browse files
committed
🚨 Fix lint errors
1 parent b56a118 commit d202427

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/core/infiniteQueryBehavior.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,10 +144,9 @@ export function infiniteQueryBehavior<
144144
}))
145145

146146
context.signal?.addEventListener('abort', () => {
147-
cancelled = true;
147+
cancelled = true
148148
abortController?.abort()
149149
})
150-
151150

152151
return finalPromise
153152
}

src/core/retryer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@ export class Retryer<TData = unknown, TError = unknown> {
136136
}
137137
}
138138

139-
140139
Promise.resolve(promiseOrValue)
141140
.then(resolve)
142141
.catch(error => {

0 commit comments

Comments
 (0)