From a8ade6f90ca22c19987f386f9f7a2d52cc8cd93b Mon Sep 17 00:00:00 2001 From: Simon Malesys <simon.malesys@pasteur.fr> Date: Thu, 6 Feb 2025 16:05:58 +0100 Subject: [PATCH] Fix TS errors --- src/client/components/AdvancedSearch.vue | 2 +- src/client/store.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/components/AdvancedSearch.vue b/src/client/components/AdvancedSearch.vue index f8a1f5f..21a3c6a 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 ae35b5c..0046d6d 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 => { -- GitLab