We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
These dropdowns don't work well in Remotion Studio:
import {z} from 'zod'; import {themeSchema} from './theme'; export const width = z.discriminatedUnion('type', [ z.object({ type: z.literal('auto'), }), z.object({ type: z.literal('fixed'), value: z.number().min(1080), }), ]); export const schema = z.object({ theme: themeSchema, width, });
The text was updated successfully, but these errors were encountered:
@remotion/studio
80b1c2c
Successfully merging a pull request may close this issue.
These dropdowns don't work well in Remotion Studio:
The text was updated successfully, but these errors were encountered: