updated duplicated field name error

This commit is contained in:
Gani Georgiev
2022-07-18 16:51:51 +03:00
parent e01f76d37b
commit f8f3ca25ee
10 changed files with 127 additions and 110 deletions
+2
View File
@@ -23,9 +23,11 @@
}
onMount(() => {
container.addEventListener("input", handleChange);
container.addEventListener("change", handleChange);
return () => {
container.removeEventListener("input", handleChange);
container.removeEventListener("change", handleChange);
};
});