https://github.com/code-423n4/2024-02-althea-liquid-infrastructure/blob/bd6ee47162368e1999a0a5b8b17b701347cf9a7d/liquid-infrastructure/contracts/LiquidInfrastructureERC20.sol#L184C1-L189C6
https://github.com/code-423n4/2024-02-althea-liquid-infrastructure/blob/bd6ee47162368e1999a0a5b8b17b701347cf9a7d/liquid-infrastructure/contracts/LiquidInfrastructureERC20.sol#L199
The distributeToAllHolders function makes a check to see if number of holders is more than zero, upon which it calls the distribute function.
The check is not needed as the distribute function also checks for non zero numnumDistributions. 
Consider removing the check and passing the values indirectly.
