From 8da2f907d690a59124d9008c0d8e1e792133702b Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Tue, 24 Mar 2026 16:39:15 -0500 Subject: fix: add nested comments to satisfy sonar rule swift:S1186 --- Hutch/Views/Tickets/TicketDetailView.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Hutch/Views/Tickets') diff --git a/Hutch/Views/Tickets/TicketDetailView.swift b/Hutch/Views/Tickets/TicketDetailView.swift index 0631d7f..6ed5df0 100644 --- a/Hutch/Views/Tickets/TicketDetailView.swift +++ b/Hutch/Views/Tickets/TicketDetailView.swift @@ -424,7 +424,9 @@ private struct EventRow: View { .padding(.horizontal) .padding(.vertical, 8) .alert("System Status Change", isPresented: $isShowingSystemStatusInfo) { - Button("OK", role: .cancel) {} + Button("OK", role: .cancel) { + // Alert dismissal is implicit; no additional action required. + } } message: { Text("This status change was recorded automatically or without a named user attached to the event.") } -- cgit v1.2.3