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,