From 3ea2dc95278007a3721ab8d762f80ea055b4e66f Mon Sep 17 00:00:00 2001 From: Aryan Jassal Date: Tue, 7 Jan 2025 15:38:42 +1100 Subject: [PATCH] fix: lint --- src/acl/ACL.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/acl/ACL.ts b/src/acl/ACL.ts index d602dfb38..cf4d4d543 100644 --- a/src/acl/ACL.ts +++ b/src/acl/ACL.ts @@ -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 {