From ebfdaf358674777676c834ce5246312c29f5dfa7 Mon Sep 17 00:00:00 2001 From: Arik Chakma Date: Fri, 28 Mar 2025 03:05:45 +0600 Subject: [PATCH] fix: key warning --- src/components/GenerateCourse/AICourseLessonChat.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/GenerateCourse/AICourseLessonChat.tsx b/src/components/GenerateCourse/AICourseLessonChat.tsx index 64aa4d3a5..e834b09b4 100644 --- a/src/components/GenerateCourse/AICourseLessonChat.tsx +++ b/src/components/GenerateCourse/AICourseLessonChat.tsx @@ -9,6 +9,7 @@ import { XIcon, } from 'lucide-react'; import { + Fragment, useCallback, useEffect, useMemo, @@ -241,9 +242,8 @@ export function AICourseLessonChat(props: AICourseLessonChatProps) {
{courseAIChatHistory.map((chat, index) => { return ( - <> +
)} - + ); })}