[CodeFactor] Apply fixes

This commit is contained in:
codefactor-io
2025-04-01 12:16:13 +00:00
parent 07aa9524aa
commit 814647e835
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ import styles from './styles.css?inline';
import { unmount } from 'svelte'; import { unmount } from 'svelte';
import { loadDynamicItems } from './dynamicSearch'; import { loadDynamicItems } from './dynamicSearch';
import { waitForElm } from '@/seqta/utils/waitForElm'; import { waitForElm } from '@/seqta/utils/waitForElm';
import { runIndexing, loadAllStoredItems } from './indexing/indexer'; import { loadAllStoredItems, runIndexing } from './indexing/indexer';
const settings = defineSettings({ const settings = defineSettings({
searchHotkey: stringSetting({ searchHotkey: stringSetting({
@@ -1,7 +1,7 @@
import { getAll, put, clear, remove } from './db'; import { clear, getAll, put, remove } from './db';
import { jobs } from './jobs'; import { jobs } from './jobs';
import { renderComponentMap } from './renderComponents'; import { renderComponentMap } from './renderComponents';
import type { IndexItem, HydratedIndexItem, Job, JobContext } from './types'; import type { HydratedIndexItem, IndexItem, Job, JobContext } from './types';
import { processItems } from '../vectorSearch'; import { processItems } from '../vectorSearch';
const META_STORE = 'meta'; const META_STORE = 'meta';
@@ -1,4 +1,4 @@
import { getEmbedding, EmbeddingIndex, initializeModel } from 'client-vector-search'; import { EmbeddingIndex, getEmbedding, initializeModel } from 'client-vector-search';
import type { HydratedIndexItem } from './indexing/types'; import type { HydratedIndexItem } from './indexing/types';
import type { SearchResult } from 'client-vector-search'; import type { SearchResult } from 'client-vector-search';