Skip to content

Commit 88896e0

Browse files
authored
fix(apple): Missing semicolons in objc config snippets (#13578)
1 parent 15301b7 commit 88896e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/platforms/apple/common/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ func application(_ application: UIApplication,
134134

135135
// Adds IP for users.
136136
// For more information, visit: https://docs.sentry.io/platforms/apple/data-management/data-collected/
137-
options.sendDefaultPii = YES
137+
options.sendDefaultPii = YES;
138138

139139
// ___PRODUCT_OPTION_START___ performance
140140
// Set tracesSampleRate to 1.0 to capture 100% of transactions for performance monitoring.
@@ -231,7 +231,7 @@ func application(_ application: UIApplication,
231231

232232
// Adds IP for users.
233233
// For more information, visit: https://docs.sentry.io/platforms/apple/data-management/data-collected/
234-
options.sendDefaultPii = YES
234+
options.sendDefaultPii = YES;
235235

236236
// ___PRODUCT_OPTION_START___ performance
237237
// Set tracesSampleRate to 1.0 to capture 100% of transactions for performance monitoring.

0 commit comments

Comments
 (0)