diff --git a/src/pages/Dashboard/DashboardContent.tsx b/src/pages/Dashboard/DashboardContent.tsx
index 5e9577d8..0b585f8a 100644
--- a/src/pages/Dashboard/DashboardContent.tsx
+++ b/src/pages/Dashboard/DashboardContent.tsx
@@ -13,6 +13,7 @@ import StorageCard from './StorageCard/StorageCard'
import NetworkCard from './NetworkCard/NetworkCard'
import SyncStatusCard from './SyncStatusCards/SyncStatusCards'
import MemoryCard from './MemoryCard/MemoryCard'
+import { XStack } from 'tamagui'
const DashboardContent = () => {
const [windowWidth, setWindowWidth] = useState(window.innerWidth)
@@ -43,20 +44,27 @@ const DashboardContent = () => {
className={'transparent-scrollbar'}
>
-
+
-
+ {windowWidth < 1375 ? (
+
+
+
+ ) :
+
+
+
+ }
- {
gridTemplateColumns: windowWidth < 1750 ? '1fr' : '1fr 1fr',
gap: '16px',
marginTop: windowWidth < 1300 ? '50px' : 0,
+ maxHeight: '200px',
}}
>
@@ -94,8 +103,9 @@ const DashboardContent = () => {
uploadRate={[31, 22, 32, 132, 32, 45, 65]}
/>
-
-
+ */}
+
+
)
}