Some guidelines that may help you, but is just a matter of taste
Preffer functions with expression body when function contains only single expression like 'when block', 'if\else' or some other expression
Preffer functions with block body for functions that have multiple exit points (multiple return statements) or does not return any value e.g. containing only logging or print()