Skip to content

Commit

Permalink
deleted unnecessary loggings
Browse files Browse the repository at this point in the history
  • Loading branch information
okaeiz committed Jun 16, 2024
1 parent 5c7c118 commit adfde0d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,10 @@ function Direction(props) {

const getValue = () => {
const value = get(field, path, 'ltr');
console.log('DirectionEntry getValue:', value); // Log getValue
return value;
};

const setValue = (value) => {
console.log('DirectionEntry setValue:', value); // Log setValue
setDirection(value); // Update context
return editField(field, path, value || 'ltr');
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ export function FormComponent(props) {
[filteredFormData],
);

console.log('FormComponent render, schema:', schema); // Log the schema

return (
<form class="fjs-form" onSubmit={handleSubmit} onReset={handleReset} aria-label={ariaLabel} noValidate>
<LocalExpressionContext.Provider value={localExpressionContext}>
Expand Down

0 comments on commit adfde0d

Please sign in to comment.