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