Skip to content

Commit 3fafc15

Browse files
authored
Merge pull request #44 from DimensionDev/fix/remove-validation
fix: remove pre validation
2 parents bc36bb8 + 9ee2692 commit 3fafc15

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/helpers/parseFrameCtxZod.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,6 @@ export const parseFrameCtxZod = (ctx: unknown, locale: LOCALE) => {
1818
}),
1919
})
2020
.transform((v, ctx) => {
21-
if (!v.isValid) {
22-
ctx.addIssue({
23-
code: z.ZodIssueCode.custom,
24-
message: t`Invalid signature message`,
25-
});
26-
return z.NEVER;
27-
}
2821
if (!v.profileId && !v.requesterFid) {
2922
ctx.addIssue({
3023
code: z.ZodIssueCode.custom,

0 commit comments

Comments
 (0)