public async isAuthenticated()

in src/services/msalAuthService.ts [53:58]


    public async isAuthenticated(): Promise<boolean> {
        const msalInstance = await this.getMsalInstance();
        const accounts = msalInstance.getAllAccounts();

        return accounts.length > 0;
    }