From 2b8767aa4bcc71c1b7f6d70bc3443fc17a8b773e Mon Sep 17 00:00:00 2001 From: mohammad Date: Wed, 24 Jul 2024 16:05:35 +0300 Subject: [PATCH] profile page with HomeCubit --- lib/features/app_layout/bloc/home_cubit.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/features/app_layout/bloc/home_cubit.dart b/lib/features/app_layout/bloc/home_cubit.dart index 3d44449..a964a53 100644 --- a/lib/features/app_layout/bloc/home_cubit.dart +++ b/lib/features/app_layout/bloc/home_cubit.dart @@ -55,7 +55,6 @@ class HomeCubit extends Cubit { Future fetchUserInfo() async { try { - print('fetchUserInfo'); var uuid = await const FlutterSecureStorage().read(key: UserModel.userUuidKey); user = await ProfileApi().fetchUserInfo(uuid); emit(HomeUserInfoLoaded(user!)); // Emit state after fetching user info