diff --git a/mobile/App.tsx b/mobile/App.tsx index a86a00af..63bf56b9 100644 --- a/mobile/App.tsx +++ b/mobile/App.tsx @@ -11,8 +11,6 @@ import { ThemeProvider, useTheme } from "./src/context/ThemeContext"; import HomeScreen from "./src/screens/HomeScreen"; import ClientLoginScreen from "./src/screens/auth/ClientLoginScreen"; -import RegisterScreen from "./src/screens/auth/RegisterScreen"; -import RoleSelectScreen from "./src/screens/auth/RoleSelectScreen"; import ClientNavigator from "./src/navigation/ClientNavigator"; import type { RootStackParamList } from "./src/navigation/types"; @@ -38,16 +36,6 @@ function AuthStack() { component={ClientLoginScreen} options={{ title: "Connexion" }} /> - - ); } diff --git a/mobile/src/screens/auth/RoleSelectScreen.tsx b/mobile/src/screens/auth/RoleSelectScreen.tsx deleted file mode 100644 index 0ce0c9fc..00000000 --- a/mobile/src/screens/auth/RoleSelectScreen.tsx +++ /dev/null @@ -1,95 +0,0 @@ -import React from "react"; -import { View, Text, TouchableOpacity, StyleSheet } from "react-native"; -import { Ionicons } from "@expo/vector-icons"; -import { useNavigation } from "@react-navigation/native"; -import type { NativeStackNavigationProp } from "@react-navigation/native-stack"; -import type { RootStackParamList } from "../../navigation/types"; -import { useTheme } from "../../context/ThemeContext"; - -type Nav = NativeStackNavigationProp; - -export default function RoleSelectScreen() { - const navigation = useNavigation