V16 RC: getOpenApiConfiguration().token does not work (#19217)

This commit is contained in:
Jacob Overgaard
2025-05-06 09:43:10 +02:00
committed by GitHub
parent 6518a261f0
commit 95bfee7c63
4 changed files with 26 additions and 28 deletions

View File

@@ -250,7 +250,7 @@ export class UmbAuthContext extends UmbContextBase {
return {
base: config.baseUrl,
credentials: config.credentials,
token: this.getLatestToken,
token: () => this.getLatestToken(),
};
}