**SUMMARY** NextJS 15.1 made the after function stable: https://nextjs.org/docs/app/api-reference/functions/after I tried the following code in my page.tsx: ```tsx after(() => { trace.getActiveSpan()?.addEvent("Page streaming finished") }); ``` I get the following error `Can not execute the operation on ended Span`. My wondering: Could it be that @vercel/otel is ending the span before potentially running the after function?