From 55ad3b02c511967767482870afc9ad7bbbee103a Mon Sep 17 00:00:00 2001 From: Peter Friese Date: Wed, 13 Dec 2023 09:42:28 +0100 Subject: [PATCH] Fix style Signed-off-by: Peter Friese --- .../GenerativeAISample/ChatSample/Views/MessageView.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Examples/GenerativeAISample/ChatSample/Views/MessageView.swift b/Examples/GenerativeAISample/ChatSample/Views/MessageView.swift index 83a83fd..7989450 100644 --- a/Examples/GenerativeAISample/ChatSample/Views/MessageView.swift +++ b/Examples/GenerativeAISample/ChatSample/Views/MessageView.swift @@ -75,7 +75,9 @@ struct MessageView: View { } MessageContentView(message: message) .padding(10) - .background(message.participant == .system ? Color(UIColor.systemFill) : Color(UIColor.systemBlue)) + .background(message.participant == .system + ? Color(UIColor.systemFill) + : Color(UIColor.systemBlue)) .roundedCorner(10, corners: [ .topLeft,