From 775ad4ba290cd4e63f122d81af8daa26e7e6f953 Mon Sep 17 00:00:00 2001 From: Sergei Sokolov Date: Thu, 18 Jul 2024 19:29:01 +0100 Subject: [PATCH] Fix language for code example in Micro Frontends doc (#10762) --- .../javascript/common/best-practices/micro-frontends.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/javascript/common/best-practices/micro-frontends.mdx b/docs/platforms/javascript/common/best-practices/micro-frontends.mdx index 3dffacd0f83f6..6b90a8eb16db3 100644 --- a/docs/platforms/javascript/common/best-practices/micro-frontends.mdx +++ b/docs/platforms/javascript/common/best-practices/micro-frontends.mdx @@ -195,7 +195,7 @@ You can then set tags/contexts on events in individual micro-frontends to decide events being routed to the same DSN regardless of where they originate. -``` +```typescript captureException(new Error("oh no!"), (scope) => { scope.setTag("feature", "cart"); return scope;