Skip to content

Commit 8e89180

Browse files
Updated values used in VendorProjectCard
1 parent 0a84acf commit 8e89180

1 file changed

Lines changed: 1 addition & 10 deletions

File tree

src/components/VendorProjectCard.tsx

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,7 @@ interface VendorProjectCardProps {
88
}
99

1010
const VendorProjectCard: React.FC<VendorProjectCardProps> = ({ project }) => {
11-
const {
12-
id,
13-
name,
14-
status,
15-
statusColor,
16-
metric1,
17-
metric2,
18-
description,
19-
reports,
20-
} = project;
11+
const { id, name, status, metric1, metric2, description, reports } = project;
2112

2213
// Sort reports by date (most recent first)
2314
const sortedReports = [...reports].sort(

0 commit comments

Comments
 (0)