Commit 3738a7f 1 parent b02b4b2 commit 3738a7f Copy full SHA for 3738a7f
File tree 3 files changed +8
-12
lines changed
3 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -23,16 +23,16 @@ const FundingProgress: React.FC<FundingProgressProps> = ({
23
23
< div className = "flex justify-between" >
24
24
< div className = "text-sm text-vd-blue-600 flex-1" >
25
25
< span className = "text-vd-blue-900 font-semibold text-lg" >
26
- ${ totalAmount }
26
+ ${ dollarAmountNeeded }
27
27
</ span > { " " }
28
- GOAL
28
+ NEEDED
29
29
</ div >
30
30
{ ! isFullyFunded && (
31
31
< div className = "text-sm text-vd-blue-600" >
32
32
< span className = "text-vd-blue-900 font-semibold text-lg" >
33
- ${ dollarAmountNeeded }
33
+ ${ totalAmount }
34
34
</ span > { " " }
35
- NEEDED
35
+ GOAL
36
36
</ div >
37
37
) }
38
38
</ div >
Original file line number Diff line number Diff line change @@ -12,15 +12,11 @@ const ImpactDetails = ({ report }: { report: Report }) => {
12
12
} ,
13
13
{
14
14
title : "Impact Timeframe" ,
15
- value : report . impactTimeframe
16
- ? report . impactTimeframe
17
- : "N/A" ,
15
+ value : report . impactTimeframe ? report . impactTimeframe : "N/A" ,
18
16
} ,
19
17
{
20
18
title : "Work Timeframe" ,
21
- value : report . workTimeframe
22
- ? report . workTimeframe
23
- : "N/A" ,
19
+ value : report . workTimeframe ? report . workTimeframe : "N/A" ,
24
20
} ,
25
21
{
26
22
title : "Contributors" ,
@@ -94,7 +90,7 @@ const EvaluationDetails = ({ report }: { report: Partial<Report> }) => {
94
90
value : report . verifiedBy || "Not Verified" ,
95
91
} ,
96
92
{
97
- title : "Byline " ,
93
+ title : "Evaluated By " ,
98
94
value : report . byline || "Anonymous" ,
99
95
} ,
100
96
] ;
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ const ReportCard: React.FC<ReportCardProps> = ({
86
86
< p className = "text-xs" >
87
87
{ fundedSoFar === totalCost
88
88
? "Funded!"
89
- : `${ totalCost - fundedSoFar } needed` }
89
+ : `$$ {totalCost - fundedSoFar } needed` }
90
90
</ p >
91
91
</ CardFooter >
92
92
</ Card >
You can’t perform that action at this time.
0 commit comments