From 6da77ed2367e3c77a55bb7ac75ec3f63455d63bc Mon Sep 17 00:00:00 2001 From: Niek van der Maas Date: Mon, 13 Mar 2023 09:13:13 +0100 Subject: [PATCH] Linting --- src/lib/Chat.svelte | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib/Chat.svelte b/src/lib/Chat.svelte index 40dde6e..0e1f2e1 100644 --- a/src/lib/Chat.svelte +++ b/src/lib/Chat.svelte @@ -5,7 +5,6 @@ import type { Request, Response, Message, Settings } from "./Types.svelte"; import Code from "./Code.svelte"; - import { afterUpdate, onMount } from "svelte"; import SvelteMarkdown from "svelte-markdown"; @@ -96,7 +95,6 @@ // Scroll to the bottom of the page after any updates to the messages array window.scrollTo(0, document.body.scrollHeight); input.focus(); - }); // Marked options @@ -259,7 +257,6 @@ recognition?.start(); } }; -