Skip to content

Commit

Permalink
link
Browse files Browse the repository at this point in the history
  • Loading branch information
nialexsan committed Dec 17, 2024
1 parent 4c88465 commit 37432ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/FundAccountSubmitted.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ export default function FundAccountSubmitted({
}: {
result?: ClientFundAccountResult
}) {
const [isFetchingBalance, setIsFetchingBalance] = useState(false)
const [balance, setBalance] = useState("")
const [balanceError, setBalanceError] = useState("")
const [_isFetchingBalance, setIsFetchingBalance] = useState(false)

Check warning on line 38 in components/FundAccountSubmitted.tsx

View workflow job for this annotation

GitHub Actions / Static checks (20.x)

'_isFetchingBalance' is assigned a value but never used
const [_balance, setBalance] = useState("")

Check warning on line 39 in components/FundAccountSubmitted.tsx

View workflow job for this annotation

GitHub Actions / Static checks (20.x)

'_balance' is assigned a value but never used
const [_balanceError, setBalanceError] = useState("")

Check warning on line 40 in components/FundAccountSubmitted.tsx

View workflow job for this annotation

GitHub Actions / Static checks (20.x)

'_balanceError' is assigned a value but never used

useEffect(() => {
if (typeof result === "undefined") return
Expand Down

0 comments on commit 37432ce

Please sign in to comment.