diff --git a/app/components/Payment/MockPayPalButton.vue b/app/components/Payment/MockPayPalButton.vue index cf42532..05a74d3 100644 --- a/app/components/Payment/MockPayPalButton.vue +++ b/app/components/Payment/MockPayPalButton.vue @@ -51,7 +51,7 @@ async function handlePayment() { showPayPalSimulation.value = true // Simulate redirect to PayPal (show fake URL for 1 second) - await new Promise((resolve) => setTimeout(resolve, 1000)) + await new Promise((resolve) => setTimeout(resolve, 3000)) // Simulate PayPal processing (1 second) await new Promise((resolve) => setTimeout(resolve, 1000)) @@ -68,61 +68,45 @@ async function handlePayment() {