Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
andresaristizabal committed Dec 20, 2024
1 parent 74ca55a commit 33d7d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/pages/acls/Acl.List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class AclList extends PageComponent<{ tab: AclListTab }> {
}

async refreshData(force: boolean) {
if (api.userData !== undefined && api.userData !== null && !api.userData.canListAcls) return;
if (api.userData != null && !api.userData.canListAcls) return;

await Promise.allSettled([
api.refreshAcls(AclRequestDefault, force),
Expand Down

0 comments on commit 33d7d8f

Please sign in to comment.