Skip to content

Commit

Permalink
chore: Remove "experimental" warning from SentryTracedView (#3441)
Browse files Browse the repository at this point in the history
GA SwiftUI support
  • Loading branch information
brustolin authored Nov 23, 2023
1 parent cb6ab62 commit 02a972c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## 8.16.1

### Features

- SwiftUI support is no longer in Beta (#3441)

### Fixes

- Fix inaccurate number of frames for transactions (#3439)
Expand Down
3 changes: 0 additions & 3 deletions Sources/SentrySwiftUI/SentryTracedView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import SwiftUI
import SentryInternal
#endif

/// - warning: This is an experimental feature and may still have bugs.
///
/// A control to measure the performance of your views and send the result as a transaction to Sentry.io.
///
/// You create a transaction by wrapping your views with this.
Expand Down Expand Up @@ -96,7 +94,6 @@ public struct SentryTracedView<Content: View>: View {

@available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *)
public extension View {
/// - warning: This is an experimental feature and may still have bugs.
func sentryTrace(_ viewName: String? = nil) -> some View {
return SentryTracedView(viewName) {
return self
Expand Down

0 comments on commit 02a972c

Please sign in to comment.