Skip to content

Commit

Permalink
refactor: remove debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalinDe committed Nov 22, 2023
1 parent 79f72a4 commit c08ba79
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions web/frontend/src/pages/form/components/FormForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ const FormForm: FC<FormFormProps> = () => {
try {
await configurationSchema.validate(data.Configuration);
} catch (err: any) {
console.log(data.Configuration);
setTextModal(t('errorIncorrectConfSchema') + err.errors.join(','));
setShowModal(true);
return;
Expand Down Expand Up @@ -147,7 +146,6 @@ const FormForm: FC<FormFormProps> = () => {
try {
await configurationSchema.validate(data);
} catch (err: any) {
console.log(data);
setTextModal(t('errorIncorrectConfSchema') + err.errors.join(','));
setShowModal(true);
return;
Expand Down

0 comments on commit c08ba79

Please sign in to comment.