diff --git a/src/app/AppViewSwitcher.tsx b/src/app/AppViewSwitcher.tsx index 599ace2e..93dc2547 100644 --- a/src/app/AppViewSwitcher.tsx +++ b/src/app/AppViewSwitcher.tsx @@ -33,9 +33,11 @@ const GAP_CLASS = 'mr-1.5 sm:mr-2'; export default function AppViewSwitcher({ currentSelection, className, + animateSearch = true, }: { currentSelection?: SwitcherSelection className?: string + animateSearch?: boolean }) { const pathname = usePathname(); @@ -170,7 +172,7 @@ export default function AppViewSwitcher({ /> } - + } diff --git a/src/app/Nav.tsx b/src/app/Nav.tsx index 2943056a..6c566d39 100644 --- a/src/app/Nav.tsx +++ b/src/app/Nav.tsx @@ -40,6 +40,7 @@ export default function Nav({ const { classNameStickyContainer, classNameStickyNav, + isNavVisible, } = useStickyNav(ref); const renderLink = ( @@ -85,6 +86,7 @@ export default function Nav({