Skip to content

Commit 7d042ff

Browse files
committed
fix: retrofunding application dates on builder
1 parent aef122f commit 7d042ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/builder/src/actions/rounds.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ export const loadRound =
9898
applicationsStartTime =
9999
Date.parse(v2Round.applicationsStartTime) / 1000;
100100
applicationsEndTime = Date.parse(v2Round.applicationsEndTime) / 1000;
101-
roundStartTime = Date.parse(v2Round.applicationsStartTime) / 1000;
102-
roundEndTime = Date.parse(v2Round.applicationsEndTime) / 1000;
101+
roundStartTime = Date.parse(v2Round.donationsStartTime) / 1000;
102+
roundEndTime = Date.parse(v2Round.donationsEndTime) / 1000;
103103
break;
104104

105105
case "allov1.QF":

0 commit comments

Comments
 (0)