We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a116fe commit 400b2c8Copy full SHA for 400b2c8
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@superfluid-finance/dashboard",
3
- "version": "33.0.0",
+ "version": "34.0.0",
4
"private": true,
5
"type": "module",
6
"scripts": {
src/pages/api/agora.ts
@@ -365,7 +365,7 @@ export default async function handler(
365
}()
366
const tranchDuration = 1 * UnitOfTime.Month;
367
368
- const tranchCount = round === 'rf7' ? 6 : 4;
+ const tranchCount = Math.max(currentTranchCount, round === 'rf7' ? 6 : 5);
369
const tranchPlan: TranchPlan = {
370
tranchCount,
371
currentTranchCount,
0 commit comments