From ae47b77cef01522d3a742ec71d4eeec831a0c07a Mon Sep 17 00:00:00 2001 From: G Date: Wed, 19 Jun 2024 11:04:55 +0000 Subject: [PATCH] backgroundDefault already include the wrapper for left right and top --- src/components/backgrounds/BackgroundWithBeasyIconAndWhiteContentArea.tsx | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/src/components/backgrounds/BackgroundWithBeasyIconAndWhiteContentArea.tsx b/src/components/backgrounds/BackgroundWithBeasyIconAndWhiteContentArea.tsx index 38064de..b0d1fea 100644 --- a/src/components/backgrounds/BackgroundWithBeasyIconAndWhiteContentArea.tsx +++ b/src/components/backgrounds/BackgroundWithBeasyIconAndWhiteContentArea.tsx @@ -1,25 +1,22 @@ import BeasyLogoIcon from "@components/BeasyLogoIcon"; import WrapperTopEdgeCurved from "@components/WrapperTopEdgeCurved"; import Box from "@components/bases/Box"; -import SafeAreaViewTopLeftRightFull from "@components/containers/SafeAreaViewTopLeftRightFull"; import type { ReactElement } from "react"; import BackgroundDefault from "./BackgroundDefault"; const BackgroundWithBeasyIconAndWhiteContentArea = ({ children }: { children?: ReactElement }) => { return ( - - - - - {children} - + + + + {children} ); }; -- libgit2 0.27.1