We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 299649a commit ebd080dCopy full SHA for ebd080d
site/src/DynamicForm.tsx
@@ -452,7 +452,7 @@ export function DynamicForm() {
452
}}
453
className="w-[300px]"
454
type={mapParamTypeToInputType(param.type)}
455
- value={field.value}
+ // value={field.value}
456
defaultValue={parameterValue(param.default_value)}
457
disabled={(param.form_type_metadata as { disabled?: boolean })?.disabled}
458
/>
site/src/main.tsx
@@ -4,7 +4,7 @@ import './index.css'
4
import App from './App.tsx'
5
6
createRoot(document.getElementById('root')!).render(
7
- <StrictMode>
+ // <StrictMode>
8
<App />
9
- </StrictMode>,
+ // </StrictMode>,
10
)
0 commit comments