diff --git a/src/components/Camera/RotatableIconWrapper.tsx b/src/components/Camera/RotatableIconWrapper.tsx index 9cb34945e..77fbbab28 100644 --- a/src/components/Camera/RotatableIconWrapper.tsx +++ b/src/components/Camera/RotatableIconWrapper.tsx @@ -1,6 +1,7 @@ import type { PropsWithChildren } from "react"; import React from "react"; import type { ViewStyle } from "react-native"; +import { View } from "react-native"; import DeviceInfo from "react-native-device-info"; import type { AnimatedStyle } from "react-native-reanimated"; import Animated from "react-native-reanimated"; @@ -18,7 +19,11 @@ const RotatableIconWrapper = ( { containerClass, }: Props ) => { if ( isTablet || !rotatableAnimatedStyle ) { - return children; + return ( + + {children} + + ); } return (