Skip to content

Commit 4636355

Browse files
committed
Show warning
1 parent a77b66d commit 4636355

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/mixins/view-transition-mixin.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,9 @@ export const ViewTransitionMixin = <
122122

123123
try {
124124
await transition.finished;
125-
} catch (_error) {
126-
// View transition skipped
125+
} catch (error) {
126+
// eslint-disable-next-line no-console
127+
console.warn("View transition failed to finish:", error);
127128
}
128129
}
129130

0 commit comments

Comments
 (0)