From 4d358415bd8e7570107ca77063813af682bf31c0 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Wed, 4 Jan 2023 10:16:35 -0800 Subject: [PATCH] nip05: switch yellowcheck to graycheck Changelog-Changed: Switch yellow nip05 check to gray --- damus/Views/ProfileName.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Views/ProfileName.swift b/damus/Views/ProfileName.swift index 165d0bde..b7bba8f0 100644 --- a/damus/Views/ProfileName.swift +++ b/damus/Views/ProfileName.swift @@ -168,5 +168,5 @@ struct EventProfileName: View { } func get_nip05_color(pubkey: String, contacts: Contacts) -> Color { - return contacts.is_friend_or_self(pubkey) ? .accentColor : .yellow + return contacts.is_friend_or_self(pubkey) ? .accentColor : .gray }