export const STATUS_LABELS = { active: "Active", pending_payment: "Payment setup incomplete", suspended: "Paused", cancelled: "Closed", }; export const statusLabel = (s) => STATUS_LABELS[s] || "Pending";