Skip to content

Commit 10c41c6

Browse files
committed
chore: Code formatting + static build update
1 parent 5ee2f29 commit 10c41c6

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

tools/server/public/index.html.gz

-11 Bytes
Binary file not shown.

tools/server/webui/src/lib/components/app/KeyboardShortcutInfo.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</script>
1616

1717
<kbd class="{baseClasses} {variantClasses} {className}">
18-
{#each keys as key, index}
18+
{#each keys as key, index (index)}
1919
{#if key === 'shift'}
2020
<ArrowBigUp class="h-1 w-1 {variant === 'destructive' ? 'text-destructive' : ''} -mr-1" />
2121
{:else if key === 'cmd'}

tools/server/webui/src/lib/components/app/chat/ChatScreen/ChatScreen.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
import ChatScreenDragOverlay from './ChatScreenDragOverlay.svelte';
3939
import * as AlertDialog from '$lib/components/ui/alert-dialog';
4040
import { deleteConversation } from '$lib/stores/chat.svelte';
41-
import { afterNavigate, goto } from '$app/navigation';
41+
import { afterNavigate } from '$app/navigation';
4242
import { onMount } from 'svelte';
4343
4444
let { showCenteredEmpty = false } = $props();

tools/server/webui/src/lib/hooks/use-processing-state.svelte.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { SETTING_CONFIG_DEFAULT } from '$lib/constants/settings-config';
21
import { slotsService } from '$lib/services';
32
import { config } from '$lib/stores/settings.svelte';
43
import type { ApiProcessingState } from '$lib/types/api';

tools/server/webui/src/routes/+layout.svelte

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@
2424
let isNewChatMode = $derived(page.url.searchParams.get('new_chat') === 'true');
2525
let showSidebarByDefault = $derived(activeMessages().length > 0 || isLoading());
2626
let sidebarOpen = $state(false);
27-
let chatSidebar: any = $state();
27+
let chatSidebar:
28+
| { activateSearchMode?: () => void; editActiveConversation?: () => void }
29+
| undefined = $state();
2830
2931
// Conversation title update dialog state
3032
let titleUpdateDialogOpen = $state(false);

0 commit comments

Comments
 (0)