type TaaS = Database['public']['Tables']['taas']['Row']
const Props = z.object({
user: User,
profile: Profile,
audits: Audit,
taas: z.array(TaaS), <- This fails
});
type TaaS = Database['public']['Tables']['taas']['Row']
const Props = z.object({
user: User,
profile: Profile,
audits: Audit,
taas: z.array(TaaS), <- This fails
});