Skip to content

Commit 94f91ee

Browse files
authored
Fix ESLint error on CI (#14467)
1 parent e24cbd2 commit 94f91ee

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/migration/src/migrations/v0047_fixBrokenTemplates.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,7 @@ function fixBrokenPage({ elements, animations, ...rest }: PageV46): PageV47 {
4747
elements: fixElementOrder(elements.concat()),
4848
...(animations
4949
? {
50-
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment,@typescript-eslint/no-unsafe-call,@typescript-eslint/no-unsafe-member-access -- False positives.
5150
animations: animations.filter((animation) =>
52-
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument -- False positive.
5351
removeBrokenAnimation(animation, elementIds)
5452
),
5553
}

0 commit comments

Comments
 (0)