We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 962daf7 commit 6a81d8bCopy full SHA for 6a81d8b
packages/kit/src/exports/hooks/sequence.js
@@ -80,9 +80,6 @@ export function sequence(...handlers) {
80
if (!length) return ({ event, resolve }) => resolve(event);
81
82
return ({ event, resolve }) => {
83
- // there's an assumption here that people aren't doing something insane like sequence(() => {}, sequence(() => {}))
84
- // worst case there is that future spans get a lower-down span as their root span -- the tracing would still work,
85
- // it'd just look a little weird
86
return apply_handle(0, event, {});
87
88
/**
0 commit comments