chore: correct spelling in search functionality (#418)

Changed 'serachValue' to 'searchValue' for consistent spelling.
This commit is contained in:
Carl Lewis Castillo 2024-03-20 13:45:11 -04:00 committed by GitHub
parent 67777d64f3
commit ac434a3d24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,8 +46,8 @@ const debouncedSearch = refDebounced(searchValue, 250)
const filteredMailList = computed(() => {
let output: Mail[] = []
const serachValue = debouncedSearch.value?.trim()
if (!serachValue) {
const searchValue = debouncedSearch.value?.trim()
if (!searchValue) {
output = props.mails
}