Merge pull request #5736 from urbit/po/fix-for-iswriters-func

npm: fix issue caused by set var in groups/lib.ts
This commit is contained in:
Patrick O'Sullivan 2022-04-27 14:45:06 -05:00 committed by GitHub
commit 1a11d797ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -198,7 +198,7 @@ export const isWriter = (group: Group, resource: string, ship: string) => {
if (typeof writers === 'undefined') {
return true;
} else {
return writers.includes(ship) || admins.includes(ship);
return [...writers].includes(ship) || admins.includes(ship);
}
};

View File

@ -1,6 +1,6 @@
{
"name": "@urbit/api",
"version": "2.1.0",
"version": "2.1.1",
"description": "A library that provides bindings and types for Urbit's various userspace desks",
"repository": {
"type": "git",