From 5a36a7931f9d36d01c254f43be1d548305bb3ac3 Mon Sep 17 00:00:00 2001 From: Kunal Vishwakarma <116634168+kunalv17@users.noreply.github.com> Date: Mon, 17 Apr 2023 11:15:06 +0530 Subject: [PATCH] fix: removed extra spaces form estimate points brackets (#837) --- .../components/estimates/single-estimate.tsx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/apps/app/components/estimates/single-estimate.tsx b/apps/app/components/estimates/single-estimate.tsx index 005acb25d..ea41ae6b7 100644 --- a/apps/app/components/estimates/single-estimate.tsx +++ b/apps/app/components/estimates/single-estimate.tsx @@ -152,14 +152,16 @@ export const SingleEstimate: React.FC = ({ {estimatePoints && estimatePoints.length > 0 ? ( -
- Estimate points( - {estimatePoints.map((point, index) => ( -
- {point.value} - {index !== estimatePoints.length - 1 && ","}{" "} -
- ))} +
+ Estimate points ( + + {estimatePoints.map((point, index) => ( +
+ {point.value} + {index !== estimatePoints.length - 1 && ","}{" "} +
+ ))} +
)
) : (