Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
aryanjassal committed Jan 7, 2025
1 parent a82804f commit 3ea2dc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/acl/ACL.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ class ACL {
if (permId in permIds) {
nodePerm = permIds[permId];
// Get the first existing perm object
const perm = Object.values(nodePerm)[0]
const perm = Object.values(nodePerm)[0];
// All perm objects are shared
nodePerm[nodeId] = perm!;
} else {
Expand Down

0 comments on commit 3ea2dc9

Please sign in to comment.