Skip to content

Commit

Permalink
chore: fix stray lib import
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-alford committed Feb 2, 2023
1 parent a816714 commit 237c772
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/schemata/boolean/BooleanFromNumber.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @since 1.0.0
*/
import { boolean } from 'io-ts/lib/Guard'
import { boolean } from 'io-ts/Guard'
import { make, SchemaExt } from 'schemata-ts/SchemaExt'

/**
Expand Down
2 changes: 1 addition & 1 deletion src/schemata/boolean/BooleanFromString.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @since 1.0.0
*/
import { pipe } from 'fp-ts/function'
import { boolean } from 'io-ts/lib/Guard'
import { boolean } from 'io-ts/Guard'
import * as PB from 'schemata-ts/PatternBuilder'
import { make, SchemaExt } from 'schemata-ts/SchemaExt'

Expand Down

0 comments on commit 237c772

Please sign in to comment.