diff --git a/docs/platforms/apple/common/user-feedback/index.mdx b/docs/platforms/apple/common/user-feedback/index.mdx index 36e174893ffb1..1cb6e265754ba 100644 --- a/docs/platforms/apple/common/user-feedback/index.mdx +++ b/docs/platforms/apple/common/user-feedback/index.mdx @@ -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: "john.doe@example.com", + name: "John Doe", // optional + email: "john.doe@example.com", // optional source: .custom, - screenshot: somePngImageData // optional + attachments: someSentryAttachmentData // optional, see SentryAttachment type )) ```