use correct type

This commit is contained in:
Salem Yaslem 2023-12-31 01:45:45 +03:00
parent 966aea2aa0
commit dc4250fa2a

View File

@ -38,7 +38,7 @@ function onDrop(e: any) {
selectedPath.value = '/';
}
function preventDefaults(e: any) {
function preventDefaults(e: Event) {
e.preventDefault()
}