From fc1cffd5244b84e6e92a64bf3bd0da0ba5b149fb Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Date: Wed, 24 Apr 2024 15:17:04 +0530 Subject: [PATCH] chore: active cycle stats improvement (#4268) --- web/components/core/sidebar/single-progress-stats.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/web/components/core/sidebar/single-progress-stats.tsx b/web/components/core/sidebar/single-progress-stats.tsx index 4d926285b..25f976d84 100644 --- a/web/components/core/sidebar/single-progress-stats.tsx +++ b/web/components/core/sidebar/single-progress-stats.tsx @@ -1,7 +1,5 @@ import React from "react"; -import { CircularProgressIndicator } from "@plane/ui"; - type TSingleProgressStatsProps = { title: any; completed: number; @@ -26,9 +24,6 @@ export const SingleProgressStats: React.FC = ({
{title}
- - - {isNaN(Math.round((completed / total) * 100)) ? "0" : Math.round((completed / total) * 100)}%