Code style changes

This commit is contained in:
Arkadiusz Fal
2023-04-22 15:08:33 +02:00
parent afa0049333
commit a9e9fa3a6d
31 changed files with 52 additions and 46 deletions

View File

@@ -5,8 +5,7 @@ import SwiftUI
#if os(iOS)
struct AppleAVPlayerView: UIViewRepresentable {
func makeUIView(context _: Context) -> some UIView {
let playerLayerView = PlayerLayerView(frame: .zero)
return playerLayerView
PlayerLayerView(frame: .zero)
}
func updateUIView(_: UIViewType, context _: Context) {}

View File

@@ -204,7 +204,7 @@ struct CommentView: View {
Group {
let last = comments.replies.last
ForEach(comments.replies) { comment in
CommentView(comment: comment, repliesID: $repliesID)
Self(comment: comment, repliesID: $repliesID)
#if os(tvOS)
.focusable()
#endif