diff options
Diffstat (limited to 'src/routes/Routes.tsx')
-rw-r--r-- | src/routes/Routes.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routes/Routes.tsx b/src/routes/Routes.tsx index 93c16fc9..63486448 100644 --- a/src/routes/Routes.tsx +++ b/src/routes/Routes.tsx @@ -11,8 +11,8 @@ import { export type RootStackParamList = { Login: undefined; Registration: undefined; - Verification: {username: string; email: string} | undefined; - Profile: undefined; + Verification: {username: string; email: string; userId: string}; + Profile: {username: string; userId: string}; }; const RootStack = createStackNavigator<RootStackParamList>(); |