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 = {
closed: {
y: '100%',
transition: {
duration: 0.5,
ease: 'easeInOut',
},
y: '100%',
},
open: {
y: 0,
transition: {
duration: 0.5,
ease: 'easeInOut',
},
y: 0,
},
};
@@ -1,5 +1,5 @@
import { AnimatePresence } from 'motion/react';
import clsx from 'clsx';
import { AnimatePresence } from 'motion/react';
import { lazy } from 'react';
import { Outlet } from 'react-router';