Skip to content

Commit

Permalink
fix: message view init
Browse files Browse the repository at this point in the history
  • Loading branch information
gtokman committed Sep 23, 2024
1 parent 5bc9ff9 commit 330d701
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 304 deletions.
303 changes: 0 additions & 303 deletions Sources/ExtensionKit/SwiftUI/BottomSheet.swift

This file was deleted.

5 changes: 5 additions & 0 deletions Sources/ExtensionKit/SwiftUI/MessageView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ public struct MessageItem: Identifiable, Equatable {
public var id = UUID()
public var recipients: [String]
public var body: String

public init(recipients: [String], body: String) {
self.recipients = recipients
self.body = body
}
}

@available(iOS 17.0, *)
Expand Down
2 changes: 1 addition & 1 deletion lgtm.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
swift build -Xswiftc "-sdk" -Xswiftc "`xcrun --sdk iphonesimulator --show-sdk-path`" -Xswiftc "-target" -Xswiftc "x86_64-apple-ios15.0-simulator"
swift build -Xswiftc "-sdk" -Xswiftc "`xcrun --sdk iphonesimulator --show-sdk-path`" -Xswiftc "-target" -Xswiftc "x86_64-apple-ios18.0-simulator"
sourcedocs generate --all-modules
git add . && git commit -m "chore: update docs"
npm run release
Expand Down

0 comments on commit 330d701

Please sign in to comment.