Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

use result.data when a validator is passed #31

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/zact/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ export function zact<InputType extends z.ZodTypeAny>(validator?: InputType) {
// The wrapper that actually validates
const validatedAction = async (input: z.infer<InputType>) => {
if (validator) {
// This will throw if the input is invalid
const result = validator.safeParse(input);

if (!result.success) {
const validatedError = fromZodError(result.error);
throw validatedError;
}
return await action(result.data);
}
return await action(input);
};
Expand Down