diff --git a/app/client/packages/design-system/widgets/src/components/AIChat/src/AIChat.tsx b/app/client/packages/design-system/widgets/src/components/AIChat/src/AIChat.tsx index 3a7c0f755967..d6975d9750a2 100644 --- a/app/client/packages/design-system/widgets/src/components/AIChat/src/AIChat.tsx +++ b/app/client/packages/design-system/widgets/src/components/AIChat/src/AIChat.tsx @@ -1,4 +1,4 @@ -import { Button, Spinner, Text, TextArea } from "@appsmith/wds"; +import { Button, Text, TextArea } from "@appsmith/wds"; import type { FormEvent, ForwardedRef, KeyboardEvent } from "react"; import React, { forwardRef, useCallback } from "react"; import { ChatTitle } from "./ChatTitle"; @@ -13,7 +13,6 @@ const _AIChat = (props: AIChatProps, ref: ForwardedRef) => { const { // assistantName, chatTitle, - description, isWaitingForResponse = false, onPromptChange, onSubmit, @@ -45,29 +44,26 @@ const _AIChat = (props: AIChatProps, ref: ForwardedRef) => { return (
- {chatTitle != null && } + - {description ?? {description}}
- {username} + + {username} +
-
    +
      {thread.map((message: ChatMessage) => ( ))} - - {isWaitingForResponse && ( -
    • - -
    • - )}