diff --git a/Components/ChatInput.svelte b/Components/ChatInput.svelte index bc50602..cd3b315 100644 --- a/Components/ChatInput.svelte +++ b/Components/ChatInput.svelte @@ -79,7 +79,7 @@ if (SearchTrigger.isSearchTrigger(e.key)) { e.preventDefault(); - const position = inputService.getCursorPosition(textareaElement) + const position = inputService.getCursorPosition(textareaElement); const trigger = SearchTrigger.fromInput(e.key); searchStateStore.initializeSearch(trigger, position); @@ -112,7 +112,7 @@ } if (e.key === "ArrowDown") { e.preventDefault(); - searchStateStore.setSelectedResultToNext() + searchStateStore.setSelectedResultToNext(); } return; } @@ -200,7 +200,7 @@