We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5887ab9 commit ece2e6cCopy full SHA for ece2e6c
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "filecoin-registry",
3
- "version": "0.1.0",
+ "version": "1.0.1",
4
"private": true,
5
"scripts": {
6
"dev": "next dev",
src/lib/utils.ts
@@ -51,11 +51,7 @@ export const getLastDatacapAllocation = (
51
allocation.ID === application.Lifecycle['Active Request ID'],
52
)
53
54
- if (
55
- lastAllocation === undefined ||
56
- lastAllocation.Active ||
57
- lastAllocation.Signers.length !== 2
58
- ) {
+ if (lastAllocation === undefined || lastAllocation.Active) {
59
return undefined
60
}
61
0 commit comments