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:
@@ -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':
|
||||
|
||||
Reference in New Issue
Block a user