Skip to content

Commit

Permalink
fix type errors from rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
bholmesdev committed Nov 5, 2024
1 parent 712cb03 commit 1e31f7a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3,723 deletions.
12 changes: 6 additions & 6 deletions packages/astro/e2e/fixtures/actions-blog/src/actions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,21 +68,21 @@ export const server = {
seven: z.string().min(3),
eight: z.string().min(3),
nine: z.string().min(3),
ten: z.string().min(3)
ten: z.string().min(3),
}),
handler(form) {
return form;
}
})
},
}),
},
sum: defineAction({
accept: "form",
accept: 'form',
input: z.object({
a: z.number(),
b: z.number(),
}),
async handler({ a, b }) {
return a + b
return a + b;
},
})
}),
};
Loading

0 comments on commit 1e31f7a

Please sign in to comment.