+ {actions.map(({ id, action, executionParams }) => (
+
+ {action}
+
+ {Object.entries(executionParams).map(
+ ([param, value]) => (
+
+ {param}: {value}
+
+ ),
+ )}
+
+
+ ))}
+
+ }
+ >
+ {actions.length === 1
+ ? '1 action'
+ : `${actions.length} actions`}
+
+