Skip to content

Commit 0549c9f

Browse files
Fixed linting errors
1 parent b45054f commit 0549c9f

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Sources/StreamChatSwiftUI/ChatChannel/MessageList/MessageContainerView.swift

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,13 +326,19 @@ public struct MessageDisplayInfo {
326326
public var showsMessageActions: Bool = true
327327
public var keyboardWasShown: Bool = false
328328

329-
public init(message: ChatMessage, frame: CGRect, contentWidth: CGFloat, isFirst: Bool, showsMessageActions: Bool = true, keyboardWasShown: Bool = false) {
329+
public init(
330+
message: ChatMessage,
331+
frame: CGRect,
332+
contentWidth: CGFloat,
333+
isFirst: Bool,
334+
showsMessageActions: Bool = true,
335+
keyboardWasShown: Bool = false
336+
) {
330337
self.message = message
331338
self.frame = frame
332339
self.contentWidth = contentWidth
333340
self.isFirst = isFirst
334341
self.showsMessageActions = showsMessageActions
335342
self.keyboardWasShown = keyboardWasShown
336343
}
337-
338344
}

0 commit comments

Comments
 (0)