Migrate billing from Paddle to Lemon Squeezy

This commit is contained in:
Codex Agent
2026-02-03 10:59:54 +01:00
parent 2f4ebfefd4
commit a0ef90e13a
228 changed files with 4369 additions and 4067 deletions

View File

@@ -25,9 +25,9 @@ const GiftSuccess: React.FC = () => {
React.useEffect(() => {
const params = new URLSearchParams(window.location.search);
const checkoutId = params.get('checkout_id') || sessionStorage.getItem('gift_checkout_id');
const transactionId = params.get('transaction_id');
const orderId = params.get('order_id');
fetchGiftVoucherByCheckout(checkoutId || undefined, transactionId || undefined)
fetchGiftVoucherByCheckout(checkoutId || undefined, orderId || undefined)
.then((data) => {
if (data) {
setVoucher(data);