From 5b8e9021e14059939dd0f1e2e60726e38f9fe477 Mon Sep 17 00:00:00 2001 From: Ahmed Awan Date: Tue, 4 Jun 2024 18:15:30 -0500 Subject: [PATCH] remove unused `watch` import --- client/src/components/Common/FilterMenu.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Common/FilterMenu.vue b/client/src/components/Common/FilterMenu.vue index bec385b5454a..66a5e4c823f4 100644 --- a/client/src/components/Common/FilterMenu.vue +++ b/client/src/components/Common/FilterMenu.vue @@ -4,7 +4,7 @@ import { faAngleDoubleUp, faQuestion, faSearch } from "@fortawesome/free-solid-s import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome"; import { BButton, BModal, BPopover } from "bootstrap-vue"; import { kebabCase } from "lodash"; -import { computed, ref, set, watch } from "vue"; +import { computed, ref, set } from "vue"; import type Filtering from "@/utils/filtering"; import { type Alias, type ErrorType, getOperatorForAlias, type ValidFilter } from "@/utils/filtering";