Skip to content

Commit

Permalink
fix: remove console.log call
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Sep 26, 2024
1 parent d2c074f commit 5f712dd
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,7 @@ const NewContentModelDialog = ({ open, onClose }: NewContentModelDialogProps) =>
return (
<Dialog open={open} onClose={onClose} data-testid="cms-new-content-model-modal">
{open && (
<Form<CmsModelData>
data={{ group, singleton: false }}
onSubmit={data => {
console.log("submitting", data);
onSubmit(data);
}}
>
<Form<CmsModelData> data={{ group, singleton: false }} onSubmit={onSubmit}>
{({ Bind, submit, data }) => {
return (
<>
Expand Down

0 comments on commit 5f712dd

Please sign in to comment.