Skip to content

Commit

Permalink
🔇 Remove console.log
Browse files Browse the repository at this point in the history
Missed it when cleaning up the previous PR
  • Loading branch information
sergei-maertens committed Jan 8, 2024
1 parent b014d03 commit 8a4a36e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/formio/validators/plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import {post} from '../../api';
export const pluginsAPIValidator = {
key: `validate.backendApi`,
check(component, setting, value) {
console.log('validator check method', value);
const checkIsEmpty = component.component?.openForms?.checkIsEmptyBeforePluginValidate || false;
const shortCutBecauseEmpty = checkIsEmpty && isEmpty(value);
if (!value || shortCutBecauseEmpty) return true;
Expand Down

0 comments on commit 8a4a36e

Please sign in to comment.