-
I've looked and looked but maybe I'm missing something. Is it possible to remove the Add Group button from the builder? If so, where do I make that customization at? |
Beta Was this translation helpful? Give feedback.
Answered by
ukrbublik
Aug 31, 2022
Replies: 2 comments
-
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ukrbublik
-
settings.renderButton = (props) => {
if (props!.type == 'addGroup' && SHOULD_HIDE_ADD_GROUP) {
return <></>
}
return <Button {...(props as any)} />;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#115