Skip to content

Commit 1a26daf

Browse files
committed
fix lint
1 parent ff85f27 commit 1a26daf

File tree

1 file changed

+1
-0
lines changed
  • packages/svelte/src/internal/client/reactivity

1 file changed

+1
-0
lines changed

packages/svelte/src/internal/client/reactivity/async.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ export async function* for_await_track_reactivity_loss(async_iterator) {
150150
} finally {
151151
// If the iterator had a normal completion and `return` is defined on the iterator, call it and return the value
152152
if (normal_completion && async_iterator.return !== undefined) {
153+
// eslint-disable-next-line no-unsafe-finally
153154
return /** @type {TReturn} */ (
154155
(await track_reactivity_loss(async_iterator.return()))().value
155156
);

0 commit comments

Comments
 (0)