fix(help): fix createSearcher import path in HelpSearch.svelte

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-28 20:55:33 +01:00
parent 9ff2e9123f
commit abf2353c66

View file

@ -1,7 +1,7 @@
<script lang="ts">
import type { HelpSearchProps } from '../types.js';
import type { SearchResult } from '../content';
import { createSearcher } from '../loader';
import { createSearcher } from '../search-engine';
let { content, translations, placeholder, onResultSelect }: HelpSearchProps = $props();