Skip to content

Commit 798ed20

Browse files
fixed functionality and errors logs
1 parent f35b53d commit 798ed20

File tree

18 files changed

+1531
-405
lines changed

18 files changed

+1531
-405
lines changed

app/api/chat/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,4 +116,4 @@ export async function POST(req: Request) {
116116
},
117117
)
118118
}
119-
}
119+
}

app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ export default function Home() {
388388
isMultiModal={currentModel?.multiModal || false}
389389
files={files}
390390
handleFileChange={handleFileChange}
391-
>
391+
>
392392
<ChatPicker
393393
templates={templates}
394394
selectedTemplate={selectedTemplate}

components/chat-input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { ArrowUp, Paperclip, Square, X } from 'lucide-react'
1313
import { SetStateAction, useEffect, useMemo, useState, useCallback } from 'react'
1414
import TextareaAutosize from 'react-textarea-autosize'
1515
import Image from 'next/image'
16-
import { useTypingEffect } from '@/lib/hooks/use-typing-effect'
16+
import { useTypingEffect } from '@/hooks/use-typing-effect'
1717

1818
export function ChatInput({
1919
retry,

0 commit comments

Comments
 (0)