Fix QA issues

This commit is contained in:
Prospector
2025-06-03 11:09:22 -07:00
parent 63b15ded60
commit 6ca8a4e5fd
3 changed files with 16 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
<script setup lang="ts">
import { ref, computed, useTemplateRef, nextTick } from 'vue'
import { ref, computed, useTemplateRef, nextTick, watch } from 'vue'
import NewModal from '../modal/NewModal.vue'
import { type MessageDescriptor, useVIntl, defineMessage } from '@vintl/vintl'
import {
@@ -194,6 +194,10 @@ async function setStep(step: Step | undefined, skipValidation = false) {
}
}
watch(selectedPlan, () => {
console.log(selectedPlan.value)
})
function begin(interval: ServerBillingInterval, plan?: ServerPlan) {
loading.value = false
selectedPlan.value = plan