Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/platforms/apple/common/user-feedback/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@ The User Feedback API allows you to collect user feedback while using your own U
```swift
SentrySDK.capture(feedback: .init(
message: "I encountered a bug while using the app.",
name: "John Doe",
email: "[email protected]",
name: "John Doe", // optional
email: "[email protected]", // optional
source: .custom,
screenshot: somePngImageData // optional
attachments: someSentryAttachmentData // optional, see SentryAttachment type
))
```