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 0b76e3c commit 21654ffCopy full SHA for 21654ff
.changeset/weak-pandas-flow.md
@@ -0,0 +1,5 @@
1
+---
2
+'svelte-ux': patch
3
4
+
5
+Fix form store updates when using zod schema
packages/svelte-ux/src/lib/stores/formStore.ts
@@ -51,7 +51,6 @@ export default function formStore<T extends Objectish = any>(
51
// Clear errors
52
errorsStore.set({});
53
// TODO: Consider using `result.data` in case there are defaults, etc?
54
- return true;
55
} else {
56
const errors = {};
57
for (const issue of result.error.issues) {
0 commit comments