diff --git a/src/components/Search/SearchBar/searchBarMobile.tsx b/src/components/Search/SearchBar/searchBarMobile.tsx index acc372d48..4b248c42b 100644 --- a/src/components/Search/SearchBar/searchBarMobile.tsx +++ b/src/components/Search/SearchBar/searchBarMobile.tsx @@ -1,6 +1,5 @@ import { IconButton } from '@mui/material'; import { FluidContainer } from 'components/Container'; -import { EnteLogo } from 'components/EnteLogo'; import React from 'react'; import { SearchMobileBox } from './styledComponents'; import SearchIcon from '@mui/icons-material/Search'; @@ -11,12 +10,11 @@ export function SearchBarMobile({ show, showSearchInput }) { } return ( - - + + + + - - - ); } diff --git a/src/components/pages/gallery/Navbar.tsx b/src/components/pages/gallery/Navbar.tsx index 916835786..2648d5667 100644 --- a/src/components/pages/gallery/Navbar.tsx +++ b/src/components/pages/gallery/Navbar.tsx @@ -33,7 +33,7 @@ export function GalleryNavbar({ setIsInSearchMode, }: Iprops) { return ( - + {!isInSearchMode && } {isFirstFetch ? ( diff --git a/src/pages/gallery/index.tsx b/src/pages/gallery/index.tsx index 49587b07a..32ce332d0 100644 --- a/src/pages/gallery/index.tsx +++ b/src/pages/gallery/index.tsx @@ -229,7 +229,7 @@ export default function Gallery() { }); useEffect(() => { - appContext.showNavBar(false); + appContext.showNavBar(true); const key = getKey(SESSION_KEYS.ENCRYPTION_KEY); if (!key) { appContext.setRedirectURL(router.asPath);