Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/components/Chat/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ const createMessage = (text: string, isUserMessage: boolean): Message => {

export default function Chat() {
const userId = useAtomValue(chatUserIdAtom);
for(let i = 0; i <= 100; i++){
console.log(i);
}


// ref to track text area and scroll text into view
const ref = useRef<HTMLParagraphElement | null>(null);
Expand Down