diff --git a/web/components/Registration/KeyLinkedStatus.vue b/web/components/Registration/KeyLinkedStatus.vue index 0745fd10f..32de6440a 100644 --- a/web/components/Registration/KeyLinkedStatus.vue +++ b/web/components/Registration/KeyLinkedStatus.vue @@ -66,7 +66,7 @@ defineProps<{ :icon-right="ArrowTopRightOnSquareIcon" :text="t('Learn More')" class="text-14px" - @click="accountStore.manage" + @click="accountStore.myKeys" /> diff --git a/web/store/account.ts b/web/store/account.ts index f67b27ef7..a26b40654 100644 --- a/web/store/account.ts +++ b/web/store/account.ts @@ -303,8 +303,9 @@ export const useAccountStore = defineStore('account', () => { // Getters accountActionType, // Actions - linkKey, manage, + myKeys, + linkKey, recover, replace, signIn,