diff --git a/components/UserProfile/CallbackFeedback.vue b/components/UserProfile/CallbackFeedback.vue index 73418af73..3b8cee08b 100644 --- a/components/UserProfile/CallbackFeedback.vue +++ b/components/UserProfile/CallbackFeedback.vue @@ -2,6 +2,7 @@ import { storeToRefs } from 'pinia'; import 'tailwindcss/tailwind.css'; import '~/assets/main.css'; +import { useAccountStore } from '~/store/account'; import { useCallbackStore } from '~/store/callback'; import { useInstallKeyStore } from '~/store/installKey'; @@ -13,8 +14,13 @@ withDefaults(defineProps(), { open: false, }); +const accountStore = useAccountStore(); const callbackStore = useCallbackStore(); +const installKeyStore = useInstallKeyStore(); + +const { updating, updateSuccess } = storeToRefs(accountStore); const { callbackLoading, decryptedData } = storeToRefs(callbackStore); +const { installing, success } = storeToRefs(installKeyStore); const close = () => { if (callbackLoading.value) return console.debug('[close] not allowed'); @@ -37,6 +43,18 @@ const close = () => {
{{ JSON.stringify(decryptedData, null, 2) }}
+

Installing License Key

+ + +

Account Connect

+ +