()
| 28 | } = useAutoTopup() |
| 29 | |
| 30 | const enableMinimumAutoTopup = async () => { |
| 31 | const { DEFAULT_THRESHOLD_CREDITS, DEFAULT_TOPUP_DOLLARS } = |
| 32 | AUTO_TOPUP_CONSTANTS |
| 33 | |
| 34 | await handleToggleAutoTopup(true) |
| 35 | handleThresholdChange(DEFAULT_THRESHOLD_CREDITS) |
| 36 | handleTopUpAmountChange(DEFAULT_TOPUP_DOLLARS) |
| 37 | } |
| 38 | |
| 39 | useEffect(() => { |
| 40 | if (success) { |
nothing calls this directly
no test coverage detected