Skip to content

Commit

Permalink
fix(kanel-zod): remove double semicolon (#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
louneskmt authored Dec 15, 2023
1 parent b03f4bc commit 91f2ae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/kanel-zod/src/processComposite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function makeDeclaration(
if (config.castToSchema) {
value.push(`}) as unknown as z.Schema<${typescriptTypeName}>`);
} else {
value.push("});");
value.push("})");
}
properties.forEach((p) => {
typeImports.push(...p.typeImports);
Expand Down

0 comments on commit 91f2ae8

Please sign in to comment.