Skip to content

Commit a07221d

Browse files
committed
Add formating to headcount and eng size
1 parent c7f7119 commit a07221d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

frontend/src/components/opportunities/OpportunityPropList.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -335,15 +335,17 @@ export function OpportunityPropList({ opportunity }: OpportunityPropListProps) {
335335
<Users width={18} />
336336
<p>Headcount</p>
337337
</div>
338-
<p className="font-medium">{opportunity.company?.headcount}</p>
338+
<p className="font-medium">
339+
{opportunity.company?.headcount?.toLocaleString()}
340+
</p>
339341
</div>
340342
<div className="flex flex-row items-center justify-start text-sm text-zinc-700 dark:text-zinc-200">
341343
<div className="flex gap-x-2 items-center w-52 text-zinc-500 dark:text-zinc-400">
342344
<Users width={18} />
343345
<p>Eng size</p>
344346
</div>
345347
<p className="font-medium">
346-
{opportunity.company?.orgSize?.engineering}
348+
{opportunity.company?.orgSize?.engineering?.toLocaleString()}
347349
</p>
348350
</div>
349351
<Separator />

0 commit comments

Comments
 (0)