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.
2 parents 6338780 + 78644d6 commit 3e4563dCopy full SHA for 3e4563d
packages/builder/src/components/rounds/Show.tsx
@@ -148,10 +148,10 @@ function ShowRound() {
148
const isDirectRound: boolean =
149
roundState?.round?.payoutStrategy === RoundCategory.Direct;
150
151
- const roundStartTime = !isDirectRound
+ const roundStartTime = isDirectRound
152
? roundState?.round?.applicationsStartTime
153
: roundState?.round?.roundStartTime;
154
- const roundEndTime = !isDirectRound
+ const roundEndTime = isDirectRound
155
? roundState?.round?.applicationsEndTime
156
: roundState?.round?.roundEndTime;
157
0 commit comments