summaryrefslogtreecommitdiff
path: root/lib/b-rfq/summary-table
diff options
context:
space:
mode:
Diffstat (limited to 'lib/b-rfq/summary-table')
-rw-r--r--lib/b-rfq/summary-table/summary-rfq-columns.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/b-rfq/summary-table/summary-rfq-columns.tsx b/lib/b-rfq/summary-table/summary-rfq-columns.tsx
index 40f143b2..af5c22b2 100644
--- a/lib/b-rfq/summary-table/summary-rfq-columns.tsx
+++ b/lib/b-rfq/summary-table/summary-rfq-columns.tsx
@@ -411,11 +411,11 @@ export function getRFQColumns({ setRowAction, router }: GetRFQColumnsProps): Col
<div className="flex flex-col gap-1 text-xs">
<div className="flex items-center justify-between">
<span className="text-muted-foreground">초기:</span>
- <span>{initial}개사 ({initialRate}%)</span>
+ <span>{initial}개사 ({Number(initialRate).toFixed(0)}%)</span>
</div>
<div className="flex items-center justify-between">
<span className="text-muted-foreground">최종:</span>
- <span>{final}개사 ({finalRate}%)</span>
+ <span>{final}개사 ({Number(finalRate).toFixed(0)}%)</span>
</div>
</div>
);