Skip to content

Commit

Permalink
Update SentryReplayView.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
brustolin committed Oct 2, 2024
1 parent 2cad7ef commit 5a9010e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Sources/SentrySwiftUI/SentryReplayView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ struct SentryReplayView: UIViewRepresentable {
}

func makeUIView(context: Context) -> UIView {
return SentryRedactView()
let view = SentryRedactView()
view.isUserInteractionEnabled = false
return view

Check warning on line 25 in Sources/SentrySwiftUI/SentryReplayView.swift

View check run for this annotation

Codecov / codecov/patch

Sources/SentrySwiftUI/SentryReplayView.swift#L23-L25

Added lines #L23 - L25 were not covered by tests
}

func updateUIView(_ uiView: UIView, context: Context) {
Expand Down

0 comments on commit 5a9010e

Please sign in to comment.