From 035cd02012b9611a548302ecfda2129554e932de Mon Sep 17 00:00:00 2001 From: i701 Date: Sat, 20 Sep 2025 14:57:21 +0500 Subject: [PATCH] =?UTF-8?q?fix:=20payment=20info=20display=20logic=20condi?= =?UTF-8?q?tion=20=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/topup-to-pay.tsx | 88 ++++++++++++++++++------------------- 1 file changed, 44 insertions(+), 44 deletions(-) diff --git a/components/topup-to-pay.tsx b/components/topup-to-pay.tsx index 9c8ba25..57da350 100644 --- a/components/topup-to-pay.tsx +++ b/components/topup-to-pay.tsx @@ -61,50 +61,50 @@ export default function TopupToPay({
- {!topup?.paid || - topup?.is_expired || - (topup?.status !== "CANCELLED" && ( -
-

Please send the following amount to the payment address

- - {topup?.paid ? ( - - ) : ( -
-
- - - -
- )} -
- ))} + {(!topup?.paid || + !topup?.is_expired || + topup?.status !== "CANCELLED") && ( +
+

Please send the following amount to the payment address

+ + {topup?.paid ? ( + + ) : ( +
+
+ + + +
+ )} +
+ )}