From 0daefaef256e76db0203d6074da71f9d20ba69c1 Mon Sep 17 00:00:00 2001 From: Haley Weslin <15714156-hweslin@users.noreply.gitlab.com> Date: Sat, 30 Sep 2023 06:11:33 +0000 Subject: [PATCH] Fix "removing remove conversation" in contact.dart This fixes a wordo (remove for remote) in contact.dart. --- lib/providers/contact.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/providers/contact.dart b/lib/providers/contact.dart index 9b12a9b..d935e73 100644 --- a/lib/providers/contact.dart +++ b/lib/providers/contact.dart @@ -97,7 +97,7 @@ Future deleteContact( .delete(); } } on Exception catch (e) { - log.debug('error removing remove conversation record key: $e', e); + log.debug('error removing remote conversation record key: $e', e); } }); }