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 7682253 commit a3fbf33Copy full SHA for a3fbf33
src/addons/formkit.ts
@@ -41,7 +41,7 @@ export default <F extends RequestPayload>(initialFields?: F) => {
41
if (node.props.type !== 'form') return;
42
43
state.node = node;
44
- node.input(initialFields);
+ if (initialFields) node.input(initialFields);
45
46
node.on('created', () => {
47
watchEffect(() => {
0 commit comments