diff --git a/src/screens/UserLoginScreen.tsx b/src/screens/UserLoginScreen.tsx index 1a2f3aa..c7f2594 100644 --- a/src/screens/UserLoginScreen.tsx +++ b/src/screens/UserLoginScreen.tsx @@ -33,8 +33,9 @@ const UserLoginScreen: UnloggedUserStackScreenComponentProps<"userLoginScreen"> // navigation.popToTop(); // navigation.replace("bottomTabs"); // navigation.navigate("bottomTabs"); - const userInformations = userInformationsMutation.mutate(data.access); - console.log(userInformations); + console.log("Receive data from authenticateUser, running getUserInformations..."); + userInformationsMutation.mutate(data.access); + // console.log("user informations", userInformations); }, // biome-ignore lint/suspicious/noExplicitAny: onError: (error: AxiosError) => {