From 4adb844f8d85df2a75dfd42305a31a310c7c51de Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 30 Jul 2026 10:12:11 +0000 Subject: [PATCH] =?UTF-8?q?Move=20Zahlungsart-=C3=A4ndern=20button=20next?= =?UTF-8?q?=20to=20Bestellung-stornieren?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/konto/bestellungen/[orderNumber]/page.tsx | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/app/konto/bestellungen/[orderNumber]/page.tsx b/app/konto/bestellungen/[orderNumber]/page.tsx index 5f2f945..ca1eadf 100644 --- a/app/konto/bestellungen/[orderNumber]/page.tsx +++ b/app/konto/bestellungen/[orderNumber]/page.tsx @@ -89,8 +89,6 @@ export default async function KontoBestellungDetailPage({ params }: { params: Pr - {canSwitchPayment && } - {order.trackingNumber && (

Sendungsverfolgung{order.carrier ? ` (${CARRIER_LABELS[order.carrier] ?? order.carrier})` : ""}

@@ -243,12 +241,17 @@ export default async function KontoBestellungDetailPage({ params }: { params: Pr )}
- {action && ( - ({ product: item.product, productName: item.productName, quantity: item.quantity }))} - /> + {(action || canSwitchPayment) && ( +
+ {action && ( + ({ product: item.product, productName: item.productName, quantity: item.quantity }))} + /> + )} + {canSwitchPayment && } +
)}