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} ); };