From b9bbbc1e2fc0553bfb31c0f6606235eaec4be0d6 Mon Sep 17 00:00:00 2001 From: Brandon McAnsh Date: Wed, 17 Jun 2026 18:49:41 -0400 Subject: [PATCH] fix: remove ` from ChatIdentifier Signed-off-by: Brandon McAnsh --- .../main/kotlin/com/flipcash/app/core/chat/ChatIdentifier.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/flipcash/core/src/main/kotlin/com/flipcash/app/core/chat/ChatIdentifier.kt b/apps/flipcash/core/src/main/kotlin/com/flipcash/app/core/chat/ChatIdentifier.kt index 362628fca..872a948a5 100644 --- a/apps/flipcash/core/src/main/kotlin/com/flipcash/app/core/chat/ChatIdentifier.kt +++ b/apps/flipcash/core/src/main/kotlin/com/flipcash/app/core/chat/ChatIdentifier.kt @@ -19,7 +19,7 @@ sealed interface ChatIdentifier : Parcelable { @Serializable @Parcelize -` data class ByContact( + data class ByContact( val contact: DeviceContact, val chatId: ChatId? = null ) : ChatIdentifier {