Submitted by 0x73696d616f
https://github.com/code-423n4/2023-12-initcapital/blob/main/contracts/core/InitCore.sol#L151 
https://github.com/code-423n4/2023-12-initcapital/blob/main/contracts/core/InitCore.sol#L282 
https://github.com/code-423n4/2023-12-initcapital/blob/main/contracts/core/InitCore.sol#L317
repay(), liquidate() and liquidateWLp() transactions revert if users approve the exact repay amount they need in the frontend and only after some blocks have passed is the transaction settled. This happens because the interest accrual is by timestamp, so the debt would have increased since the approval, when the transaction settles.
A test when repaying debt was carried out in TestInitCore.sol. The timestamp increased just 1 second, but it was enough to make the transaction revert. It may be possible to request a bigger alowance than expected, but this has other implications.
Vscode, Foundry
Receive the amount in InitCore as argument instead of the shares on the repay(), liquidate() and liquidateWLp() functions.
fez-init (INIT) acknowledged and commented:
