There are reports from stakers with UI failures when the stake amount is below or equal to the min stake (40K T). The UI should only allow to stake amounts that are greater than the min.
For reference, the smart contract checks the amount is strictly greater:
require(amount > minTStakeAmount, "Amount is less than minimum");