浏览代码

fix: formatting

Timothy J. Baek 1 年之前
父节点
当前提交
96b198b27b
共有 1 个文件被更改,包括 4 次插入3 次删除
  1. 4 3
      src/lib/components/chat/MessageInput.svelte

+ 4 - 3
src/lib/components/chat/MessageInput.svelte

@@ -1,11 +1,12 @@
 <script lang="ts">
 <script lang="ts">
-	import { settings } from '$lib/stores';
 	import toast from 'svelte-french-toast';
 	import toast from 'svelte-french-toast';
-	import Suggestions from './MessageInput/Suggestions.svelte';
 	import { onMount, tick } from 'svelte';
 	import { onMount, tick } from 'svelte';
-	import Prompts from './MessageInput/PromptCommands.svelte';
+	import { settings } from '$lib/stores';
 	import { findWordIndices } from '$lib/utils';
 	import { findWordIndices } from '$lib/utils';
 
 
+	import Prompts from './MessageInput/PromptCommands.svelte';
+	import Suggestions from './MessageInput/Suggestions.svelte';
+
 	export let submitPrompt: Function;
 	export let submitPrompt: Function;
 	export let stopResponse: Function;
 	export let stopResponse: Function;