-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Labels
Description
Prerequisites
- I have searched the existing issues
- I understand that providing a SSCCE example is tremendously useful to the maintainers.
- I have read the documentation
- Ideally, I'm providing a sample JSFiddle, Codesandbox.io or preferably a shared playground link demonstrating the issue.
What theme are you using?
shadcn
Version
6.0.0-beta.12
Current Behavior

Page crashed with error above
Expected Behavior
Render a form
Steps To Reproduce
import Form from '@rjsf/shadcn';
import { type RJSFSchema } from '@rjsf/utils';
import validator from '@rjsf/validator-ajv8';
const App = () => {
const schema: RJSFSchema = {
title: 'Test form',
type: 'string',
};
return (<><Form schema={schema} validator={validator} /></>)
}
Environment
- OS: macOS 15.5
- Node: 22.14.0
- pnpm: 10.13.1
Anything else?
No response