Overriding a function on Upgradeable Contract

Hey guys! Does anyone know if when you use Upgradeable OpenZeppelin contracts anything changes when overriding a function?

// Restricting release of funds by PaymentSplitter
function release(address payable account) public override {
require(true);
super.release();
}

is throwing

Member "release" not found or not visible after argument-dependent lookup in type(contract super ContractName).

There should be no difference in terms of overrides for upgradeable contracts. It looks like you are missing the arguments for super.release().