This commit is contained in:
2026-04-01 05:15:00 -06:00
parent 6fb3bc0198
commit 501f314aff
5 changed files with 12 additions and 12 deletions

View File

@@ -46,8 +46,8 @@
<script setup lang="ts">
import { ref, watch } from "vue"
import { useMessage } from "naive-ui"
import { html, css, js } from "../store/editors"
import { Submission } from "../api"
import { html, css, js } from "../../store/editors"
import { Submission } from "../../api"
const props = defineProps<{ taskId: number }>()
const message = useMessage()

View File

@@ -56,7 +56,7 @@ import {
streaming,
streamingContent,
sendPrompt,
} from "../store/prompt"
} from "../../store/prompt"
const input = ref("")
const messagesRef = ref<HTMLElement>()