Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit bb66b3f

Browse files
Fix isLoggedIn function call
1 parent a6fea90 commit bb66b3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/lookup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ async function isLoggedIn() {
2424
}
2525

2626
async function doGetUserGroups() {
27-
const isLoggedIn = await isLoggedIn();
27+
const isLoggedIn = await utils.auth.isLoggedIn();
2828

2929
if (isLoggedIn) {
3030
const userId = await utils.auth.getUserId();

0 commit comments

Comments
 (0)