aboutsummaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/components
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2022-06-09 16:11:49 -0300
committerSebastian <sebasjm@gmail.com>2022-06-09 16:12:18 -0300
commit3ebb1d18154375471e329f2bad40534d858cbe1e (patch)
tree5a7e5d14eb03c88eddbe0d61afa4ee1335768d65 /packages/anastasis-webui/src/components
parent78b056a0b1613ef19d1d72c17fd256c2e86e6774 (diff)
downloadwallet-core-3ebb1d18154375471e329f2bad40534d858cbe1e.tar.xz
better select secret screen
Diffstat (limited to 'packages/anastasis-webui/src/components')
-rw-r--r--packages/anastasis-webui/src/components/FlieButton.tsx1
-rw-r--r--packages/anastasis-webui/src/components/fields/FileInput.tsx1
2 files changed, 0 insertions, 2 deletions
diff --git a/packages/anastasis-webui/src/components/FlieButton.tsx b/packages/anastasis-webui/src/components/FlieButton.tsx
index 4358d7d4d..1d19ae630 100644
--- a/packages/anastasis-webui/src/components/FlieButton.tsx
+++ b/packages/anastasis-webui/src/components/FlieButton.tsx
@@ -45,7 +45,6 @@ export function FileButton(props: Props): VNode {
if (!f || f.length != 1) {
return props.onChange(undefined);
}
- console.log(f);
if (f[0].size > MAX_IMAGE_UPLOAD_SIZE) {
setSizeError(true);
return props.onChange(undefined);
diff --git a/packages/anastasis-webui/src/components/fields/FileInput.tsx b/packages/anastasis-webui/src/components/fields/FileInput.tsx
index b67ae870b..f20b07c7a 100644
--- a/packages/anastasis-webui/src/components/fields/FileInput.tsx
+++ b/packages/anastasis-webui/src/components/fields/FileInput.tsx
@@ -75,7 +75,6 @@ export function FileInput(props: FileInputProps): VNode {
if (!f || f.length != 1) {
return props.onChange(undefined);
}
- console.log(f);
if (f[0].size > MAX_IMAGE_UPLOAD_SIZE) {
setSizeError(true);
return props.onChange(undefined);