File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
web/src/pages/Cases/CaseDetails Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -83,11 +83,10 @@ const AppealBanner: React.FC = () => {
83
83
const { fundedChoices } = useFundingContext ( ) ;
84
84
85
85
const text = useMemo ( ( ) => {
86
- if ( loserSideCountdown )
87
- return `${ secondsToDayHourMinute ( loserSideCountdown ) } left until losing options can be funded` ;
86
+ if ( loserSideCountdown ) return `${ secondsToDayHourMinute ( loserSideCountdown ) } remaining to fund losing options` ;
88
87
// only show if loosing option was funded and winner needs funding, else no action is needed from user
89
88
if ( winnerSideCountdown && ! isUndefined ( fundedChoices ) && fundedChoices . length > 0 )
90
- return `${ secondsToDayHourMinute ( winnerSideCountdown ) } left until winning option can be funded ` ;
89
+ return `${ secondsToDayHourMinute ( winnerSideCountdown ) } remaining to fund winning option` ;
91
90
return ;
92
91
} , [ loserSideCountdown , winnerSideCountdown , fundedChoices ] ) ;
93
92
You can’t perform that action at this time.
0 commit comments