Skip to content

Commit f02925d

Browse files
committed
fix: Missing import update
1 parent b67f888 commit f02925d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessage.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import { copyToClipboard } from '$lib/utils/copy';
88
import { parseThinkingContent } from '$lib/utils/thinking';
99
import { isLoading } from '$lib/stores/chat.svelte';
10-
import { useProcessingState } from '$lib/hooks/use-processing-state';
10+
import { useProcessingState } from '$lib/hooks/use-processing-state.svelte';
1111
import { fade } from 'svelte/transition';
1212
1313
interface Props {

tools/server/webui/src/lib/services/slots.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { ApiSlotData, ApiProcessingState } from '$lib/types/api';
2+
import { serverStore } from '$lib/stores/server.svelte';
23

34
export class SlotsService {
45
private baseUrl: string;

0 commit comments

Comments
 (0)