Skip to content

fix(ui): add class name & remove redundant prop type

Yannis Barlas requested to merge action-group-fix into master

This does two things:

  • Adds className to the component so that it can be overriden with styled-components.
  • Removes the unnecessary and frankly annoying prop type check that I introduced myself back in the day. 😄

The check was that all children of ActionGroup need to be Actions.
However, if you made a wrapper around Action or something similar, it would start throwing warnings.

Merge request reports