diff --git a/src/client/components/AdvancedSearch.vue b/src/client/components/AdvancedSearch.vue
index f8a1f5f92fef66b62e06e1d94ade9c878361a576..21a3c6a2ad4e00da2c819ae687b7a2381fd85ff7 100644
--- a/src/client/components/AdvancedSearch.vue
+++ b/src/client/components/AdvancedSearch.vue
@@ -177,7 +177,7 @@
 </template>
 
 <script setup lang="ts">
-import { computed, onMounted, ref } from 'vue'
+import { computed, ref } from 'vue'
 import { useStore } from '../store'
 import type { AdvancedFilters, FilterChip } from '../types'
 import AppCheckbox from './AppCheckbox.vue'
diff --git a/src/client/store.ts b/src/client/store.ts
index ae35b5cafd22f102f990adec98de9952046920cd..0046d6d4f6f3cd60fa44a8727cfff8163f6ddaf8 100644
--- a/src/client/store.ts
+++ b/src/client/store.ts
@@ -13,7 +13,7 @@ import type {
   FastaHeader,
   Statistics
 } from './types'
-import alphanumSort from './utils/alphanumSort'
+// import alphanumSort from './utils/alphanumSort'
 
 export const useStore = defineStore('store', {
   state: (): AppState => {