We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e9e40b commit 1e03469Copy full SHA for 1e03469
web/src/pages/Cases/CaseDetails/Appeal/Classic/Fund.tsx
@@ -18,7 +18,7 @@ const Fund: React.FC = () => {
18
const loserSideCountdown = useLoserSideCountdownContext();
19
const { fundedChoices, winningChoice } = useFundingContext();
20
const needFund =
21
- loserSideCountdown! > 0 ||
+ (loserSideCountdown ?? 0) > 0 ||
22
(!isUndefined(fundedChoices) &&
23
!isUndefined(winningChoice) &&
24
fundedChoices.length > 0 &&
0 commit comments