diff --git a/platform-includes/enriching-events/set-user/native.mdx b/platform-includes/enriching-events/set-user/native.mdx index a4549957ae431..2574f2f94b0b7 100644 --- a/platform-includes/enriching-events/set-user/native.mdx +++ b/platform-includes/enriching-events/set-user/native.mdx @@ -2,7 +2,7 @@ #include sentry_value_t user = sentry_value_new_object(); -sentry_value_set_by_key(user, "ip_address", sentry_value_new_string("\{\{auto}}")); +sentry_value_set_by_key(user, "ip_address", sentry_value_new_string("{{auto}}")); sentry_value_set_by_key(user, "email", sentry_value_new_string("jane.doe@example.com")); sentry_set_user(user); ```