Skip to content

Commit

Permalink
fix up lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Nov 8, 2024
1 parent ba42266 commit de1eb14
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ struct ConversationListView: View {
case .dm(let conversation):
return (try? Util.abbreviate(address: conversation.peerInboxId)) ?? "Unknown Address"
case .group(let group):
return try! group.groupName()
return (try? group.groupName()) ?? "Group Name"
}
}

Expand Down

0 comments on commit de1eb14

Please sign in to comment.