Skip to content

Commit

Permalink
fix: Increase sub-spaces limit to 16 (#994)
Browse files Browse the repository at this point in the history
* fix: Increase sub-spaces limit to 16

* allow only unique subspaces

* v0.11.20
  • Loading branch information
ChaituVR committed May 3, 2024
1 parent 4daa631 commit df9ec5f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@snapshot-labs/snapshot.js",
"version": "0.11.19",
"version": "0.11.20",
"repository": "snapshot-labs/snapshot.js",
"license": "MIT",
"main": "dist/snapshot.cjs.js",
Expand Down
5 changes: 3 additions & 2 deletions src/schemas/space.json
Original file line number Diff line number Diff line change
Expand Up @@ -379,11 +379,12 @@
},
"children": {
"type": "array",
"maxItems": 8,
"maxItems": 16,
"title": "children",
"items": {
"type": "string"
}
},
"uniqueItems": true
},
"boost": {
"type": "object",
Expand Down

0 comments on commit df9ec5f

Please sign in to comment.