|
|
@@ -141,7 +141,6 @@ const { platformFees, loadPlatformFees } = usePaymentPlatformFees()
|
|
|
const item = computed(() => props.servicePackage)
|
|
|
|
|
|
const selectedMethod = ref(null)
|
|
|
-const agreedToTerms = ref(false)
|
|
|
const paymentMethods = ref([])
|
|
|
const loadingCards = ref(false)
|
|
|
|
|
|
@@ -166,7 +165,7 @@ const addressFullText = computed(() => {
|
|
|
return parts.join(', ');
|
|
|
});
|
|
|
|
|
|
-const canConfirm = computed(() => selectedMethod.value !== null && agreedToTerms.value)
|
|
|
+const canConfirm = computed(() => selectedMethod.value !== null)
|
|
|
|
|
|
|
|
|
//direcionamento para ttermos e serviços
|