diff --git a/src/components/SingleSidedStakingActions.tsx b/src/components/SingleSidedStakingActions.tsx index c4fe8806..38fbc2c9 100644 --- a/src/components/SingleSidedStakingActions.tsx +++ b/src/components/SingleSidedStakingActions.tsx @@ -408,6 +408,9 @@ const FarmActions = ({ return 'Stake'; }; + // Prevent user from unstaking if he locked and the lock limit will be reached + const canStake = hasUserLockedTokens ? (canLock ? true : false) : true; + return (