diff --git a/client/src/game/ui/notes/TagAutoCompleteSearch.vue b/client/src/game/ui/notes/TagAutoCompleteSearch.vue index c4bb2e6f4..864790a0c 100644 --- a/client/src/game/ui/notes/TagAutoCompleteSearch.vue +++ b/client/src/game/ui/notes/TagAutoCompleteSearch.vue @@ -24,7 +24,6 @@ watch(() => props.modelValue, (newValue) => { } }); -// https://stackoverflow.com/a/69901745 const results = computed(() => props.options.filter( (option) => option.name.toLowerCase().includes(searchQuery.value.toLowerCase())