diff --git a/lib/presentation_layer/components/person_card.dart b/lib/presentation_layer/components/person_card.dart index ea8e2e4..41b05db 100644 --- a/lib/presentation_layer/components/person_card.dart +++ b/lib/presentation_layer/components/person_card.dart @@ -29,19 +29,6 @@ class PersonCard extends ConsumerWidget { this.nip05, }); - Future checkNip05(String nip05, String pubkey, WidgetRef ref) async { - var nip05service = await ref.read(nip05provider.future); - try { - var check = await nip05service.check(nip05, pubkey); - - if (check != null && check.valid) { - return check.nip05; - } - // ignore: empty_catches - } catch (e) {} - return ""; - } - @override Widget build(BuildContext context, WidgetRef ref) { return InkWell(