Skip to content

Commit 4d4a92f

Browse files
fix: nullable schemas
1 parent f4380b1 commit 4d4a92f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/api/entities.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ export const catchUpHistorySchema = z.object({
122122
});
123123

124124
export const estimatedSlotSchema = z.number();
125-
export const resetSlotSchema = z.number();
126-
export const storageSlotSchema = z.number();
125+
export const resetSlotSchema = z.number().nullable();
126+
export const storageSlotSchema = z.number().nullable();
127127
export const voteSlotSchema = z.number();
128128
export const slotCaughtUpSchema = z.number().nullable();
129129

0 commit comments

Comments
 (0)