Rocky_Mountain_Vending/.pnpm-store/v10/files/ef/3a103f85df905504117b3830b640f48723fefc89cd94fdb9abf3d29401a233eeb592d868786df861f7b178b6601dd0ecd5bc5bb7c3a0730cd59d55041a11d4
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

16 lines
420 B
Text

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