fix warning

This commit is contained in:
Hristo Nedelkov 2023-10-13 20:21:11 +03:00
parent f42d924fd0
commit 2f0af4dc74
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ const BalanceChartCard = () => {
}
return (
<DashboardCardWrapper height="fit-content" minWidth="536px">
<DashboardCardWrapper height="fit-content" minWidth="536px" >
<YStack space={'$4'}>
<XStack justifyContent={'space-between'}>
<YStack>

View File

@ -3,7 +3,7 @@ import { Shadow } from '@status-im/components'
type DashboardCardWrapperProps = {
children: React.ReactNode
padding?: string
width: string
width?: string
height?: string
minWidth?: string
}