Merge branch 'main' into feature/pass-entity-type-to-tree-data-source

This commit is contained in:
Mads Rasmussen
2024-05-14 10:08:40 +02:00
committed by GitHub

View File

@@ -180,7 +180,7 @@ export class UmbAuthContext extends UmbContextBase<UmbAuthContext> {
* @returns True if the token is valid, otherwise false
*/
async validateToken(): Promise<boolean> {
return this.#authFlow.makeRefreshTokenRequest();
return this.#isBypassed || this.#authFlow.makeRefreshTokenRequest();
}
/**