Skip to content

Commit

Permalink
Merge pull request #695 from clrfund/fix/signup-deadline
Browse files Browse the repository at this point in the history
Fix incorrect time left to join on the join landing page
  • Loading branch information
yuetloo authored Jul 9, 2023
2 parents e17a0c3 + 52a3d27 commit 7da5e2b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions vue-app/src/views/JoinLanding.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
{{ $t('joinLanding.open.div1') }}
</div>
<div class="countdown caps">
<time-left v-if="signUpDeadline" valueClass="none" unitClass="none" :date="signUpDeadline" />
<time-left v-if="recipientJoinDeadline" valueClass="none" unitClass="none" :date="recipientJoinDeadline" />
</div>
</div>
<div class="apply-callout">
Expand Down Expand Up @@ -182,7 +182,6 @@ const registryInfo = computed<RegistryInfo | null>(() => recipientRegistryInfo.v
const deposit = computed<BigNumber | undefined>(() => registryInfo.value?.deposit)
const depositToken = computed<string | null>(() => registryInfo.value?.depositToken || null)
const signUpDeadline = computed(() => appStore.currentRound?.signUpDeadline)
const spacesRemaining = computed(() => {
// eslint-disable-next-line
if (!appStore.currentRound || !registryInfo.value) {
Expand Down

0 comments on commit 7da5e2b

Please sign in to comment.