kristiandupont / kanel

Generate Typescript types from Postgres
https://kristiandupont.github.io/kanel/
MIT License
877 stars 62 forks source link

removed extra semicolon from generated zod enum #546

Closed jpholtmeyer closed 7 months ago

jpholtmeyer commented 7 months ago

Zod enums were being generated with 2 semicolons at the end of the declaration:

export const accountTypes = z.enum([
    '401A',
    '401K',
]);;

Removed the extra semicolon.

kristiandupont commented 7 months ago

The CI errors are my fault, because I've managed to break main. Thank you for contributing!