Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy committed Oct 8, 2024
1 parent de50ee9 commit 2589558
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ export const MOBILE_NAV_HEIGHT = ROW_HEIGHT + PILL_HEIGHT;
export function MobileNavTabs() {
const { isNarrowWidth } = useResponsive();
const { scrollY } = useScroll();
const [navbarState, setNavbarState] = useState<
'default' | 'open' | 'hidden'
>('default');
const [navbarState, setNavbarState] = useState<'default' | 'open' | 'hidden'>(
'default',
);

const navTabStyle = {
flex: `1 1 ${100 / COLUMN_COUNT}%`,
Expand Down

0 comments on commit 2589558

Please sign in to comment.