@@ -83,7 +83,12 @@ const StakeWithdrawButton: React.FC<IActionButton> = ({ amount, parsedAmount, ac
83
83
error : allowanceError ,
84
84
} = useSimulatePnkIncreaseAllowance ( {
85
85
query : {
86
- enabled : isAllowance && ! isUndefined ( targetStake ) && ! isUndefined ( allowance ) && ! isUndefined ( balance ) ,
86
+ enabled :
87
+ isAllowance &&
88
+ ! isUndefined ( targetStake ) &&
89
+ ! isUndefined ( allowance ) &&
90
+ ! isUndefined ( balance ) &&
91
+ parsedAmount <= balance ,
87
92
} ,
88
93
args : [ klerosCoreAddress [ DEFAULT_CHAIN ] , BigInt ( targetStake ?? 0 ) - BigInt ( allowance ?? 0 ) ] ,
89
94
} ) ;
@@ -103,7 +108,7 @@ const StakeWithdrawButton: React.FC<IActionButton> = ({ amount, parsedAmount, ac
103
108
parsedAmount !== 0n &&
104
109
targetStake >= 0n &&
105
110
! isAllowance &&
106
- ( isStaking ? true : jurorBalance && parsedAmount <= jurorBalance [ 2 ] ) ,
111
+ Boolean ( isStaking ? balance && parsedAmount <= balance : jurorBalance && parsedAmount <= jurorBalance [ 2 ] ) ,
107
112
} ,
108
113
args : [ BigInt ( id ?? 0 ) , targetStake ] ,
109
114
} ) ;
@@ -231,30 +236,26 @@ const StakeWithdrawButton: React.FC<IActionButton> = ({ amount, parsedAmount, ac
231
236
232
237
useEffect ( ( ) => {
233
238
if ( isPopupOpen ) return ;
234
- if ( setStakeError || allowanceError ) {
235
- setErrorMsg ( parseWagmiError ( setStakeError || allowanceError ) ) ;
236
- } else if ( targetStake !== 0n && courtDetails && targetStake < BigInt ( courtDetails . court ?. minStake ) ) {
239
+ if (
240
+ action === ActionType . stake &&
241
+ targetStake !== 0n &&
242
+ courtDetails &&
243
+ targetStake < BigInt ( courtDetails . court ?. minStake )
244
+ ) {
237
245
setErrorMsg ( `Min Stake in court is: ${ formatETH ( courtDetails ?. court ?. minStake ) } ` ) ;
246
+ } else if ( setStakeError || allowanceError ) {
247
+ setErrorMsg ( parseWagmiError ( setStakeError || allowanceError ) ) ;
238
248
}
239
- } , [ setStakeError , setErrorMsg , targetStake , courtDetails , allowanceError , isPopupOpen ] ) ;
249
+ } , [ setStakeError , setErrorMsg , targetStake , courtDetails , allowanceError , isPopupOpen , action ] ) ;
240
250
241
251
const isDisabled = useMemo ( ( ) => {
242
- if (
243
- parsedAmount == 0n ||
244
- isUndefined ( targetStake ) ||
245
- isUndefined ( courtDetails ) ||
246
- ( targetStake !== 0n && targetStake < BigInt ( courtDetails . court ?. minStake ) )
247
- )
248
- return true ;
252
+ if ( parsedAmount == 0n ) return true ;
249
253
if ( isAllowance ) {
250
254
return isUndefined ( increaseAllowanceConfig ) || isSimulatingAllowance || ! isUndefined ( allowanceError ) ;
251
255
}
252
-
253
256
return isUndefined ( setStakeConfig ) || isSimulatingSetStake || ! isUndefined ( setStakeError ) ;
254
257
} , [
255
258
parsedAmount ,
256
- targetStake ,
257
- courtDetails ,
258
259
increaseAllowanceConfig ,
259
260
isSimulatingAllowance ,
260
261
setStakeConfig ,
0 commit comments