We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
A component is attempting to bind to a non-bindable property
1 parent 2b322de commit 80e2575Copy full SHA for 80e2575
1 file changed
src/transformJavascript.js
@@ -65,6 +65,9 @@ function init_operations() {
65
);
66
}
67
if (!isSupported("proxy", browsers)) {
68
+ // Patch Svelte5 validate_prop_bindings() function for the src\internal\client\validate.js
69
+ // Fixes `A component is attempting to bind to a non-bindable property` errors
70
+ code = code.replace("if (!bindable.includes(key)) {", "if (false) {");
71
// Patch Svelte5 proxy() function for the src\legacy\legacy-client.js
72
// Fixes SvelteKit navigation (reacting to root.$set() calls)
73
code = code.replace(
0 commit comments