From e58af8ddd8e86d3a26a0b2f8563abae720a4706f Mon Sep 17 00:00:00 2001 From: Jazz Turner-Baggs <473256+jazzz@users.noreply.github.com> Date: Thu, 18 Jun 2026 14:19:38 -0700 Subject: [PATCH] Clippy fix --- core/conversations/src/conversation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/conversations/src/conversation.rs b/core/conversations/src/conversation.rs index ccb5fa1..c9377c4 100644 --- a/core/conversations/src/conversation.rs +++ b/core/conversations/src/conversation.rs @@ -43,5 +43,5 @@ pub(crate) trait GroupConvo: Convo + std::fmt::Debug + S } pub(crate) trait Identified { - fn id(&self) -> ConversationIdRef; + fn id(&self) -> ConversationIdRef<'_>; }