From 2f198a4d72eb4fdeebfa8a51d33b15926415da0e Mon Sep 17 00:00:00 2001 From: dwindown Date: Sun, 28 Dec 2025 00:55:08 +0700 Subject: [PATCH] Fix consulting slot status label to use 'Pending' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed getConsultingSlotStatusLabel to return 'Pending' instead of 'Menunggu Pembayaran' for pending_payment status, making it consistent with payment status labels and more suitable for badge display. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- src/lib/statusHelpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/statusHelpers.ts b/src/lib/statusHelpers.ts index 1b98912..607f433 100644 --- a/src/lib/statusHelpers.ts +++ b/src/lib/statusHelpers.ts @@ -56,7 +56,7 @@ export const getPaymentStatusColor = (status: PaymentStatus | string | null): st export const getConsultingSlotStatusLabel = (status: ConsultingSlotStatus | string): string => { switch (status) { case 'pending_payment': - return 'Menunggu Pembayaran'; + return 'Pending'; case 'confirmed': return 'Terkonfirmasi'; case 'completed':