I have two Custom Actions - action_id , action_part.
inside action_id , I am calling action_part through this line -
return [FollowupAction(“action_part”)]
The problem which i am facing is -
from action_id , action_part is called . but after finish of action_part , again action_id is called. re-calling of action_id is useless .
kindly tell me how to avoid this.