diff --git a/lib/features/home/presentation/pages/home_page.dart b/lib/features/home/presentation/pages/home_page.dart index c8571947..0d87ea9f 100644 --- a/lib/features/home/presentation/pages/home_page.dart +++ b/lib/features/home/presentation/pages/home_page.dart @@ -25,15 +25,6 @@ class _HomePageWidgetState extends State with WidgetsBindingObse super.initState(); WidgetsBinding.instance.addObserver(this); WidgetsBinding.instance.addPostFrameCallback((_) async { - final email = await StorageHelper().get(SecureStorageKey.email.value); - final pass = await StorageHelper().get(SecureStorageKey.password.value); - final cli = await StorageHelper().get(ProfileStorageKey.clientUUID.key); - final owner = await StorageHelper().get(ProfileStorageKey.ownerUUID.key); - print('Email: $email'); - print('Password: $pass'); - print('Client: $cli'); - print('Owner: $owner'); - await LocalsRepositoryImpl().check(context); if (widget.update != null) { await widget.update!(context);