I have an manually triggered flow.

This is the error message:
Unable to process template language expressions in action 'Create_item' inputs at line '0' and column '0': 'The template language function 'if' expects three parameter: the condition to test as the first parameter, the value to return if the condition is true as the second parameter, and the value to return if the condition is false as the third parameter. The function was invoked with '1' parameter(s). Please see https://aka.ms/logicexpressions#if for usage details.'.
The expression is
if(empty(triggerBody()['text_1'],' ',triggerBody()['text_1']))
the condition to test as the first parameter: if(empty(triggerBody()['text_1']
the value to return if the condition is true: ' '
value to return if the condition is false: triggerBody()['text_1']
What went wrong?