import { FC } from "react"; // types import { ICycle } from "@plane/types"; // components import ProgressChart from "@/components/core/sidebar/progress-chart"; export type ActiveCycleProductivityProps = { cycle: ICycle; }; export const ActiveCycleProductivity: FC = (props) => { const { cycle } = props; return (

Issue burndown

Ideal
Current
{`Pending issues - ${cycle.backlog_issues + cycle.unstarted_issues + cycle.started_issues}`}
); };