Skip to content

Commit 1076a13

Browse files
committed
chote: fromatting fixes
1 parent 3045338 commit 1076a13

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

src/components/Chat.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,15 @@ export function Chat() {
248248
handleError(new Error('Failed to load background job'))
249249
}
250250
},
251-
[backgroundJobs, cancelStream, stop, clearBuffer, setMessages, handleResponse, handleError],
251+
[
252+
backgroundJobs,
253+
cancelStream,
254+
stop,
255+
clearBuffer,
256+
setMessages,
257+
handleResponse,
258+
handleError,
259+
],
252260
)
253261

254262
const handleCancelJob = useCallback((jobId: string) => {

src/hooks/useBackgroundJobsStore.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { create } from 'zustand'
22
import { persist } from 'zustand/middleware'
3-
import type {BackgroundJob} from '@/lib/schemas';
4-
import { backgroundJobSchema } from '@/lib/schemas'
3+
import type { BackgroundJob } from '@/lib/schemas'
4+
import { backgroundJobSchema } from '@/lib/schemas'
55

66
interface BackgroundJobsState {
77
jobs: Record<string, BackgroundJob>

0 commit comments

Comments
 (0)