diff --git a/src/components/FormControl.vue b/src/components/FormControl.vue
index f1feee77..cbc89088 100644
--- a/src/components/FormControl.vue
+++ b/src/components/FormControl.vue
@@ -17,11 +17,11 @@ const props = defineProps({
default: null,
},
maxlength: {
- type: String,
+ type: Number,
default: null,
},
minlength: {
- type: String,
+ type: Number,
default: null,
},
max: {
diff --git a/src/components/UserAvatar.vue b/src/components/UserAvatar.vue
index 82513f43..34ad1ab4 100644
--- a/src/components/UserAvatar.vue
+++ b/src/components/UserAvatar.vue
@@ -27,7 +27,7 @@ const username = computed(() => props.username);
:alt="username"
width="200"
height="200"
- class="w-full h-auto bg-gray-100 dark:bg-slate-800 rounded-full overflow-hidden"
+ class="w-full h-auto bg-gray-100 dark:bg-slate-800 rounded-full overflow-hidden drop-shadow-lg"
/>