Skip to content

Commit c381b0d

Browse files
committed
fix(web): fund button ask to connect
1 parent 2eb12e3 commit c381b0d

File tree

1 file changed

+1
-1
lines changed
  • web/src/pages/Cases/CaseDetails/Appeal/Classic

1 file changed

+1
-1
lines changed

web/src/pages/Cases/CaseDetails/Appeal/Classic/Fund.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const Fund: React.FC<IFund> = ({ selectedOption }) => {
3636
/>
3737
<StyledButton
3838
disabled={isSending || !balance || parsedAmount.gt(balance)}
39-
text="Fund"
39+
text={typeof balance === "undefined" ? "Connect to Fund" : "Fund"}
4040
onClick={() => {
4141
if (
4242
typeof selectedOption !== "undefined" &&

0 commit comments

Comments
 (0)