style(macos): swiftformat + swiftlint cleanup

This commit is contained in:
Peter Steinberger
2026-01-07 20:39:03 +00:00
parent 7ce1f635cd
commit 9859ad3176
9 changed files with 30 additions and 20 deletions

View File

@@ -16,12 +16,11 @@ enum GatewayAgentChannel: String, CaseIterable, Sendable {
func shouldDeliver(_ isLast: Bool) -> Bool {
switch self {
case .webchat:
return false
false
case .last:
return isLast
isLast
case .whatsapp, .telegram:
return true
true
}
}
}