Skip to content

Commit

Permalink
[TM-1514] fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
dottyy committed Jan 2, 2025
1 parent 42d3ee8 commit 2224940
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ const GoalProgressCard: FC<GoalProgressCardProps> = ({
// Calculates percentage and clamps between 0 and 100
const progressValue = !limit ? 0 : Math.min(Math.max((value / limit) * 100, 0), 100);

console.log("progressValue", progressValue);

return (
<div {...rest} className={classNames("flex items-center rounded-lg", className)}>
{/* Left */}
Expand Down

0 comments on commit 2224940

Please sign in to comment.