Description
The functions withdraw() and _claim() make transfers directly to the user using payable(user).transfer(amount). .transfer can only forward 2300 gas which means it can fail for some contracts and stop withdraws. .call should be used instead, for example user.call{value: amount}("").
Status
Currently being reviewed by the team.