@visns-studio/visns-components 4.10.38 → 4.10.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
78
78
|
},
|
|
79
79
|
"name": "@visns-studio/visns-components",
|
|
80
|
-
"version": "4.10.
|
|
80
|
+
"version": "4.10.39",
|
|
81
81
|
"description": "Various packages to assist in the development of our Custom Applications.",
|
|
82
82
|
"main": "src/index.js",
|
|
83
83
|
"files": [
|
|
@@ -574,10 +574,6 @@ function Form({
|
|
|
574
574
|
}
|
|
575
575
|
};
|
|
576
576
|
|
|
577
|
-
useEffect(() => {
|
|
578
|
-
console.info('Form Settings', formSettings);
|
|
579
|
-
}, [formSettings]);
|
|
580
|
-
|
|
581
577
|
const handleSubmit = async (e) => {
|
|
582
578
|
try {
|
|
583
579
|
if (e) {
|
|
@@ -701,7 +697,6 @@ function Form({
|
|
|
701
697
|
|
|
702
698
|
if (Array.isArray(formData[fileKey])) {
|
|
703
699
|
if (fileUpload && formData[fileKey]) {
|
|
704
|
-
console.info('File Upload:', formData[fileKey]);
|
|
705
700
|
const uploadPromises = formData[fileKey].map(
|
|
706
701
|
async (file) => {
|
|
707
702
|
const toastId = toast.info(
|