Fix consulting slot status label to use 'Pending'

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 <noreply@anthropic.com>
This commit is contained in:
dwindown
2025-12-28 00:55:08 +07:00
parent 0a299466d8
commit 2f198a4d72

View File

@@ -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':