Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
mouseless0x committed Feb 16, 2025
1 parent daf8fdc commit df4520e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/createRedisStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ const dumpOutstanding = async ({
userOp: userOperationSchema.parse(job.data.userOp)
}
})
.filter((op) => op !== undefined)
.filter((op): op is UserOpInfo => op !== undefined)
}

export const createRedisStore = ({
Expand Down

0 comments on commit df4520e

Please sign in to comment.