From 6a9739ab3166bb86f29dbae99d931a217246ed97 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Mon, 30 Mar 2026 17:05:33 +0200 Subject: [PATCH] Update Sentry context key to 'Error Info' in profile page --- web/pages/profile.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pages/profile.tsx b/web/pages/profile.tsx index b22850fe..c8cee893 100644 --- a/web/pages/profile.tsx +++ b/web/pages/profile.tsx @@ -94,7 +94,7 @@ function ProfilePageInner(props: {user: User; profile: Profile}) { } Sentry.captureException(error, { user: baseUser, // shows in the User section - contexts: {errorInfo: {message}}, // only strings as values (not nested objects) + contexts: {'Error Info': {message}}, // only strings as values (not nested objects) extra: {parsedProfile, interests, causes, work}, // for the rest (nested, etc.) }) toast.error(message)