ITokenAcquisition for delegated blob access is broken after first time use in Azure Blob Client pipeline, how does it dispose of IServiceProvider?

A problem persists using the Azure Blob .NET SDK, when acquiring delegated user tokens via the injected interface Microsoft.Identity.Web.ITokenAcquisition for downstream APIs, any and all of the blob clients dispose of the IServiceProvider object inside the ITokenAcquisition implementation. This means that the ITokenAcquisition.GetAuthenticationResultForUserAsync() can only be called once, as the Dependency Container cannot access a disposed object. The famous error message: "Cannot access disposed object. Object name 'IServiceProvider'".
When I use the exact same logic in the other Azure SDKs, such as Azure KeyVault or Azure Graph, I can in fact call the method multiple times, and it clearly makes use of the memory cache effectively as only the first call is expensive and the sequent calls return the authentication result within a millisecond.
This really obstructs our development, as we now have to work around with additional caching and also designing the software in a way that the Azure Storage SDK is called last in our controllers, because if it would be called before the other SDKs, the other SDKs are simply not able to get the AuthenticationResult or AccessToken via the broken ITokenAcquisition.