diff --git a/README.md b/README.md index 471177b158..fa35db3062 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,7 @@ # Safe{Wallet} monorepo -- 🌐 [Safe{Wallet} web app](/apps/web/README.md) -- 📱 [Safe{Wallet} mobile app](/apps/mobile/README.md) +🌐 [Safe{Wallet} web app](/apps/web/README.md) ・ 📱 [Safe{Wallet} mobile app](/apps/mobile/README.md) ## Overview diff --git a/apps/web/src/components/common/Mui/index.tsx b/apps/web/src/components/common/Mui/index.tsx index 37f36b43c9..0ca0798ec6 100644 --- a/apps/web/src/components/common/Mui/index.tsx +++ b/apps/web/src/components/common/Mui/index.tsx @@ -50,6 +50,7 @@ export const Box = memo(function Box({ bgcolor, gridArea, lineHeight, + sx, ...props }: BoxProps['sx'] & BoxProps) { return ( @@ -99,7 +100,7 @@ export const Box = memo(function Box({ bgcolor, gridArea, lineHeight, - ...props.sx, + ...sx, }, isUndefined, )} @@ -143,6 +144,7 @@ export const Typography = memo(function Typography({ letterSpacing, whiteSpace, width, + sx, ...props }: TypographyProps['sx'] & TypographyProps) { return ( @@ -183,7 +185,7 @@ export const Typography = memo(function Typography({ letterSpacing, whiteSpace, width, - ...props.sx, + ...sx, }, isUndefined, )}