chore: delete role page

This commit is contained in:
2026-03-01 13:35:57 +01:00
parent 95ad6f7b33
commit 80391a2dc3
2 changed files with 0 additions and 107 deletions
-12
View File
@@ -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" }}
/>
<Stack.Screen
name="register"
component={RegisterScreen}
options={{ title: "Inscription" }}
/>
<Stack.Screen
name="role"
component={RoleSelectScreen}
options={{ title: "Choisir un rôle" }}
/>
</Stack.Navigator>
);
}