Skip to content

Commit

Permalink
🔨chore: type fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Adebesin-Cell committed Nov 22, 2024
1 parent ec466cc commit c150712
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/grumpy-balloons-repeat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@everipedia/iq-utils": patch
---

Replace .nullable to .nullish
2 changes: 1 addition & 1 deletion src/schema/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ export const Wiki = z
.transform((val) => val ?? [])
.default([]),
})
.nullable()
.nullish()
.default({}),
})
.refine(isEventWikiValid, {
Expand Down

0 comments on commit c150712

Please sign in to comment.