summaryrefslogtreecommitdiff
path: root/Hutch/Views/Inbox/ThreadDetailView.swift
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-03-24 16:39:15 -0500
committerChristian Cleberg <[email protected]>2026-03-24 16:39:15 -0500
commit8da2f907d690a59124d9008c0d8e1e792133702b (patch)
tree79fcc86662155709fe2beb7b6559270254b96c01 /Hutch/Views/Inbox/ThreadDetailView.swift
parent1f8a13e069ef5ebb7092803870d7152958ceb84e (diff)
downloadhutch-8da2f907d690a59124d9008c0d8e1e792133702b.tar.gz
hutch-8da2f907d690a59124d9008c0d8e1e792133702b.tar.bz2
hutch-8da2f907d690a59124d9008c0d8e1e792133702b.zip
fix: add nested comments to satisfy sonar rule swift:S1186
Diffstat (limited to 'Hutch/Views/Inbox/ThreadDetailView.swift')
-rw-r--r--Hutch/Views/Inbox/ThreadDetailView.swift5
1 files changed, 4 insertions, 1 deletions
diff --git a/Hutch/Views/Inbox/ThreadDetailView.swift b/Hutch/Views/Inbox/ThreadDetailView.swift
index e4c34e7..143200f 100644
--- a/Hutch/Views/Inbox/ThreadDetailView.swift
+++ b/Hutch/Views/Inbox/ThreadDetailView.swift
@@ -277,7 +277,10 @@ private struct MailComposeView: UIViewControllerRepresentable {
return controller
}
- func updateUIViewController(_ uiViewController: UIViewController, context: Context) {}
+ func updateUIViewController(_ uiViewController: UIViewController, context: Context) {
+ // The view controller is fully configured in makeUIViewController.
+ // No state-driven updates are required.
+ }
final class Coordinator: NSObject, MFMailComposeViewControllerDelegate {
let onComplete: (Result) -> Void