diff --git a/src/app/components/building-passport/RecommendationCard.tsx b/src/app/components/building-passport/RecommendationCard.tsx index 851e83c4..c8b72b02 100644 --- a/src/app/components/building-passport/RecommendationCard.tsx +++ b/src/app/components/building-passport/RecommendationCard.tsx @@ -15,6 +15,9 @@ export const uvalueColumns: ColumnDef[] = [ { accessorKey: "estimatedCost", header: "Estimated Cost", + cell: ({ row }) => { + return
£{formatNumber(row.getValue("estimatedCost"))}
; + }, }, { accessorKey: "newUValue",