diff --git a/.eslintrc.yml b/.eslintrc.yml index 358e3d59..df65fb9e 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -16,6 +16,7 @@ plugins: rules: "no-void": off + "@typescript-eslint/no-confusing-void-expression": off "@typescript-eslint/no-unsafe-argument": off "@typescript-eslint/explicit-function-return-type": off "@typescript-eslint/promise-function-async": off diff --git a/apps/pwa/src/pages/player/lyric_panel/lyric_panel.tsx b/apps/pwa/src/pages/player/lyric_panel/lyric_panel.tsx index 456ba703..70746ac5 100644 --- a/apps/pwa/src/pages/player/lyric_panel/lyric_panel.tsx +++ b/apps/pwa/src/pages/player/lyric_panel/lyric_panel.tsx @@ -7,7 +7,6 @@ import Context from '../context'; import Backdrop from './backdrop'; import Controller from './controller'; import Lyric from './lyric'; -import WakeLock from './wake_lock'; const Style = styled(animated.div)` z-index: ${ZIndex.LYRIC_PANEL}; @@ -32,7 +31,6 @@ function LyricPanel({ style }: { style: unknown }) { return ( // @ts-expect-error: style is known