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 = () => {
8383 const { fundedChoices } = useFundingContext ( ) ;
8484
8585 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` ;
8887 // only show if loosing option was funded and winner needs funding, else no action is needed from user
8988 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` ;
9190 return ;
9291 } , [ loserSideCountdown , winnerSideCountdown , fundedChoices ] ) ;
9392
You can’t perform that action at this time.
0 commit comments