I extracted a few action into separate classes. Why does this work: ``` public function chooseLinkTarget(): ActionGroup { return ActionGroup::make([ $this->createLinkToProject(), ]); } protected function createLinkToProject() { return CreateLinkToProject::make(); } ``` but not this: ``` public function chooseLinkTargetType(): ActionGroup { return ActionGroup::make([ CreateLinkToProject::make(), ]); } ``` The action modal won't open in the last example.