diff --git a/lib/features/login/data/repository/authentication_repository_impl.dart b/lib/features/login/data/repository/authentication_repository_impl.dart index 36eebd08b..a61e2d404 100644 --- a/lib/features/login/data/repository/authentication_repository_impl.dart +++ b/lib/features/login/data/repository/authentication_repository_impl.dart @@ -9,6 +9,6 @@ class AuthenticationRepositoryImpl extends AuthenticationRepository { @override Future authenticationUser(Uri baseUrl, UserName userName, Password password) { - return Future.value(User(UserId(userName.userName), "Alice", "Alice")); + return loginDataSource.authenticationUser(baseUrl, userName, password); } } \ No newline at end of file