// Langfuse Cloud only import { LocalIsoDate } from "@/src/components/LocalIsoDate"; import { useBillingInformation } from "@/src/ee/features/billing/components/useBillingInformation"; export const BillingCurrentPlanLabel = () => { const { planLabel, cancellation } = useBillingInformation(); return (
<>Current plan: {planLabel} {cancellation?.isCancelled && cancellation.date && ( <> (will end on ) )}
); };