Files
klz-cables.com/.pnpm-store/v10/files/ef/3a103f85df905504117b3830b640f48723fefc89cd94fdb9abf3d29401a233eeb592d868786df861f7b178b6601dd0ecd5bc5bb7c3a0730cd59d55041a11d4
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

17 lines
420 B
Plaintext

import { context } from '@opentelemetry/api';
import { getScopesFromContext } from '@sentry/opentelemetry';
/**
* Update the active isolation scope.
* Should be used with caution!
*/
function setIsolationScope(isolationScope) {
const scopes = getScopesFromContext(context.active());
if (scopes) {
scopes.isolationScope = isolationScope;
}
}
export { setIsolationScope };
//# sourceMappingURL=scope.js.map