Skip to content

Commit

Permalink
chore: remove one console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
danielo515 committed Nov 27, 2023
1 parent a2f9020 commit b222533
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/store/formStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ function parseField<T extends FieldValue>(field: Field<T>): E.Either<FieldFailed
case 'required': return pipe(
field.value,
O.chain(nonEmptyString),
(x) => { console.log(x); return x },
O.match(
() => E.left(FieldFailed(field, rule)),
(ok) => ok == true ? E.right(field) : E.left(FieldFailed(field, rule)))
Expand Down

0 comments on commit b222533

Please sign in to comment.