aboutsummaryrefslogtreecommitdiff
path: root/src/routes/Routes.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/Routes.tsx')
-rw-r--r--src/routes/Routes.tsx7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/routes/Routes.tsx b/src/routes/Routes.tsx
index c6365613..93c16fc9 100644
--- a/src/routes/Routes.tsx
+++ b/src/routes/Routes.tsx
@@ -6,7 +6,6 @@ import {
Registration,
Verification,
Profile,
- Camera,
} from '../screens/onboarding';
export type RootStackParamList = {
@@ -14,7 +13,6 @@ export type RootStackParamList = {
Registration: undefined;
Verification: {username: string; email: string} | undefined;
Profile: undefined;
- Camera: undefined;
};
const RootStack = createStackNavigator<RootStackParamList>();
@@ -44,11 +42,6 @@ const Routes: React.FC<RoutesProps> = ({}) => {
component={Profile}
options={{headerShown: false}}
/>
- <RootStack.Screen
- name="Camera"
- component={Camera}
- options={{headerShown: false}}
- />
</RootStack.Navigator>
);
};