From 508150f2021d937d2710dffbf974c56e3e736869 Mon Sep 17 00:00:00 2001 From: Uncle Fatso Date: Sun, 3 May 2026 17:28:38 +0300 Subject: [PATCH] remove ghost connect from the top bar Signed-off-by: Uncle Fatso --- package.json | 2 +- src/App.jsx | 2 +- src/components/PageTitle/PageTitle.jsx | 2 +- src/components/TopBar/SelectNetwork.jsx | 2 +- src/components/TopBar/TopBar.jsx | 8 +++----- src/components/TopBar/Wallet/index.tsx | 2 +- src/constants/ecosystem.js | 2 +- 7 files changed, 9 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index 7661a99..d68735c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ghost-dao-interface", "private": true, - "version": "0.7.33", + "version": "0.7.34", "type": "module", "scripts": { "dev": "vite", diff --git a/src/App.jsx b/src/App.jsx index 84e1bd9..cf2c8f1 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -123,7 +123,7 @@ function App() { const provider = usePublicClient(); const chainId = useChainId(); - const isSmallerScreen = useMediaQuery("(max-width: 1130px)"); + const isSmallerScreen = useMediaQuery("(max-width: 1047px)"); const isSmallScreen = useMediaQuery("(max-width: 600px)"); const { diff --git a/src/components/PageTitle/PageTitle.jsx b/src/components/PageTitle/PageTitle.jsx index 6113a7a..7bee469 100644 --- a/src/components/PageTitle/PageTitle.jsx +++ b/src/components/PageTitle/PageTitle.jsx @@ -2,7 +2,7 @@ import { Box, Typography, useMediaQuery, useTheme } from "@mui/material"; const PageTitle = ({ name, subtitle, noMargin }) => { const theme = useTheme(); - const mobile = useMediaQuery(theme.breakpoints.down("900")); + const mobile = useMediaQuery(theme.breakpoints.down("700")); return ( +