diff options
-rw-r--r-- | src/routes/main/MainStackScreen.tsx | 7 | ||||
-rw-r--r-- | src/utils/camera.ts | 1 |
2 files changed, 1 insertions, 7 deletions
diff --git a/src/routes/main/MainStackScreen.tsx b/src/routes/main/MainStackScreen.tsx index 43760b60..65a695f5 100644 --- a/src/routes/main/MainStackScreen.tsx +++ b/src/routes/main/MainStackScreen.tsx @@ -344,13 +344,6 @@ const MainStackScreen: React.FC<MainStackProps> = ({route}) => { gestureEnabled: false, }} /> - <MainStack.Screen - name="CameraScreen" - component={CameraScreen} - options={{ - gestureEnabled: false, - }} - /> </MainStack.Navigator> ); }; diff --git a/src/utils/camera.ts b/src/utils/camera.ts index 3937129a..f3705552 100644 --- a/src/utils/camera.ts +++ b/src/utils/camera.ts @@ -6,6 +6,7 @@ import { TakePictureOptions, TakePictureResponse, } from 'react-native-camera'; +import {ProcessingManager} from 'react-native-video-processing'; import ImagePicker, {Image, Video} from 'react-native-image-crop-picker'; import {ERROR_UPLOAD} from '../constants/strings'; |