From 1a020bbbd82aa500882cd1fa7660f0a13260799d Mon Sep 17 00:00:00 2001 From: AlexisDanlos <91090088+AlexisDanlos@users.noreply.github.com> Date: Sat, 5 Apr 2025 02:13:07 +0200 Subject: [PATCH] refactor: remove unused imports and obfuscate service from contact page --- dialer/lib/presentation/features/contacts/contact_page.dart | 3 --- 1 file changed, 3 deletions(-) diff --git a/dialer/lib/presentation/features/contacts/contact_page.dart b/dialer/lib/presentation/features/contacts/contact_page.dart index ead0797..bbbe935 100644 --- a/dialer/lib/presentation/features/contacts/contact_page.dart +++ b/dialer/lib/presentation/features/contacts/contact_page.dart @@ -1,8 +1,6 @@ import 'package:flutter/material.dart'; import '../contacts/contact_state.dart'; import '../contacts/widgets/alphabet_scroll_page.dart'; -import '../../common/widgets/loading_indicator.dart'; -import '../../../domain/services/obfuscate_service.dart'; class ContactPage extends StatefulWidget { const ContactPage({super.key}); @@ -12,7 +10,6 @@ class ContactPage extends StatefulWidget { } class _ContactPageState extends State { - final ObfuscateService _obfuscateService = ObfuscateService(); @override Widget build(BuildContext context) {