Skip to content

Commit

Permalink
fix: improve function name
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e committed Nov 24, 2024
1 parent 9de5941 commit 97dabe1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apps/ui/src/views/Settings/EmailNotifications.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const loading = computed(
() => web3.value.authLoading || usersStore.users[web3.value.account]?.loading
);
function handleCreateSubscribeClick() {}
function handleCreateSubscriptionClick() {}
function handleResendConfirmationClick() {}
Expand Down Expand Up @@ -132,7 +132,9 @@ watchEffect(async () => {
:error="formErrors.email"
:definition="DEFINITION.properties.email"
/>
<UiButton @click="handleCreateSubscribeClick">Subscribe now</UiButton>
<UiButton @click="handleCreateSubscriptionClick">
Subscribe now
</UiButton>
</div>
</template>
Expand Down

0 comments on commit 97dabe1

Please sign in to comment.