From 1d2bf312257573f155cdc3959a232076d87d841c Mon Sep 17 00:00:00 2001 From: Gianfranco P <899175+gianpaj@users.noreply.github.com> Date: Wed, 31 Dec 2025 14:47:44 +0100 Subject: [PATCH] fix typo in CHANGELOG --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8fdc6d9fb1d..0cb50ecff105 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,7 +31,7 @@ Work in this release was contributed by @xgedev, @Mohataseem89, @sebws, and @G-R You can now set attributes on the SDK's scopes which will be applied to all logs as long as the respective scopes are active. For the time being, only `string`, `number` and `boolean` attribute values are supported. ```ts - Sentry.geGlobalScope().setAttributes({ is_admin: true, auth_provider: 'google' }); + Sentry.getGlobalScope().setAttributes({ is_admin: true, auth_provider: 'google' }); Sentry.withScope(scope => { scope.setAttribute('step', 'authentication');