Skip to content

Commit

Permalink
Merge pull request #1008 from Infomaniak/contact-sheet
Browse files Browse the repository at this point in the history
fix(ContactSheet): Show on CC
  • Loading branch information
PhilippeWeidmann committed Oct 3, 2023
2 parents 85e85f6 + e078082 commit 1bb17bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Mail/Views/Thread/MessageHeaderDetailView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,6 @@ struct RecipientLabel: View {
.lineLimit(1)
.layoutPriority(1)
}
.adaptivePanel(item: $contactViewRecipient) { recipient in
ContactActionsView(recipient: recipient)
}

if !recipient.name.isEmpty {
Text(recipient.email)
Expand All @@ -118,6 +115,9 @@ struct RecipientLabel: View {
}
}
}
.adaptivePanel(item: $contactViewRecipient) { recipient in
ContactActionsView(recipient: recipient)
}
}
.padding(.bottom, 2)
}
Expand Down

0 comments on commit 1bb17bf

Please sign in to comment.