From e92d1e1ba1fce7309fb814d100c8a3d3bb11083f Mon Sep 17 00:00:00 2001 From: G Date: Wed, 11 Sep 2024 10:44:32 +0000 Subject: [PATCH] removed the safe area wrapper around the children props --- src/components/backgrounds/BackgroundDefault.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/backgrounds/BackgroundDefault.tsx b/src/components/backgrounds/BackgroundDefault.tsx index 622643b..5f11d8d 100644 --- a/src/components/backgrounds/BackgroundDefault.tsx +++ b/src/components/backgrounds/BackgroundDefault.tsx @@ -1,4 +1,3 @@ -import SafeAreaViewTopLeftRightFull from "@components/containers/SafeAreaViewTopLeftRightFull"; import { images } from "@styles/Commons"; import { ImageBackground } from "react-native"; @@ -10,7 +9,7 @@ const BackgroundDefault = ({ children }: Props) => { source={require("../../../assets/background.png")} style={images.background} > - {children} + {children} ); }; -- libgit2 0.27.1