This commit is contained in:
spaced4ndy
2024-05-07 14:33:33 +04:00
parent c2ee4ab0de
commit 62c67a3ffd
@@ -14,6 +14,7 @@ struct ContactListNavLink: View {
var contact: Contact
var body: some View {
// TODO keep bottom bar?
NavigationLink {
ChatInfoView(
chat: chat,
@@ -36,22 +37,6 @@ struct ContactListNavLink: View {
}
}
}
// HStack{
// ProfileImage(imageStr: contact.image, size: 38)
// .padding(.trailing, 2)
// Text(contact.chatViewName)
// .lineLimit(1)
// if contact.contactConnIncognito {
// Spacer()
// Image(systemName: "theatermasks")
// .resizable()
// .scaledToFit()
// .frame(width: 22, height: 22)
// .foregroundColor(.secondary)
// }
// }
}
}