fix linting issues

This commit is contained in:
jeffvli
2025-12-07 03:29:26 -08:00
parent 2fb40fd050
commit 20a6fcbeb7
2 changed files with 3 additions and 3 deletions
@@ -344,18 +344,18 @@ MobilePlayerContainer.displayName = 'MobilePlayerContainer';
const mobileContainerVariants: Variants = { const mobileContainerVariants: Variants = {
closed: { closed: {
y: '100%',
transition: { transition: {
duration: 0.5, duration: 0.5,
ease: 'easeInOut', ease: 'easeInOut',
}, },
y: '100%',
}, },
open: { open: {
y: 0,
transition: { transition: {
duration: 0.5, duration: 0.5,
ease: 'easeInOut', ease: 'easeInOut',
}, },
y: 0,
}, },
}; };
@@ -1,5 +1,5 @@
import { AnimatePresence } from 'motion/react';
import clsx from 'clsx'; import clsx from 'clsx';
import { AnimatePresence } from 'motion/react';
import { lazy } from 'react'; import { lazy } from 'react';
import { Outlet } from 'react-router'; import { Outlet } from 'react-router';