From 0c61f85707c83c4ebd6e6cd4866bc147034685d6 Mon Sep 17 00:00:00 2001 From: Ahmed Bouhuolia Date: Tue, 6 Feb 2024 20:38:25 +0200 Subject: [PATCH] chore: remove format number from estimate quantity --- .../src/containers/Drawers/EstimateDetailDrawer/utils.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/webapp/src/containers/Drawers/EstimateDetailDrawer/utils.tsx b/packages/webapp/src/containers/Drawers/EstimateDetailDrawer/utils.tsx index 84acab544..eb9def4e6 100644 --- a/packages/webapp/src/containers/Drawers/EstimateDetailDrawer/utils.tsx +++ b/packages/webapp/src/containers/Drawers/EstimateDetailDrawer/utils.tsx @@ -2,7 +2,7 @@ import React from 'react'; import intl from 'react-intl-universal'; import { getColumnWidth } from '@/utils'; -import { FormatNumberCell, TextOverviewTooltipCell } from '@/components'; +import { TextOverviewTooltipCell } from '@/components'; import { useEstimateDetailDrawerContext } from './EstimateDetailDrawerProvider'; /** @@ -36,7 +36,6 @@ export const useEstimateReadonlyEntriesColumns = () => { { Header: intl.get('quantity'), accessor: 'quantity_formatted', - Cell: FormatNumberCell, width: getColumnWidth(entries, 'quantity_formatted', { minWidth: 60, magicSpacing: 5,