Mao пре 4 година
родитељ
комит
bebcc706dd

+ 1 - 0
packages/app/src/components/Navbar/GrowiNavbar.tsx

@@ -122,6 +122,7 @@ const GrowiNavbar = (props) => {
  */
 const GrowiNavbarWrapper = withUnstatedContainers(GrowiNavbar, [AppContainer]);
 
+
 GrowiNavbar.propTypes = {
   appContainer: PropTypes.instanceOf(AppContainer).isRequired,
 };

+ 2 - 0
packages/app/src/components/Navbar/GrowiNavbarBottom.jsx

@@ -8,6 +8,7 @@ import { useCurrentPagePath, useIsSearchPage } from '~/stores/context';
 import GlobalSearch from './GlobalSearch';
 
 const GrowiNavbarBottom = (props) => {
+
   const { data: isDrawerOpened, mutate: mutateDrawerOpened } = useDrawerOpened();
   const { data: isDeviceSmallerThanMd } = useIsDeviceSmallerThanMd();
   const { open: openCreateModal } = useCreateModalStatus();
@@ -72,4 +73,5 @@ const GrowiNavbarBottom = (props) => {
   );
 };
 
+
 export default GrowiNavbarBottom;