Skip to content
Merged
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
9 changes: 3 additions & 6 deletions apps/extension/src/components/ChatArea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { useEffect } from "react";
import { ModelResponse } from "./ModelResponse";
import { UserQuery } from "./UserQuery";
import { useChat } from "@/hooks/useChat";
import PrismLogo from "@assets/prism.png";

export const ChatArea = () => {
const { messages, isLoading } = useChat();
Expand All @@ -23,12 +24,8 @@ export const ChatArea = () => {
{isLoading && (
<div className="w-full">
<div className="flex flex-col items-start gap-2">
<div className="inline-flex items-center gap-2 rounded-md bg-[#1f242b] px-3 py-2">
<div className="typing-dots">
<span className="typing-dot" />
<span className="typing-dot" />
<span className="typing-dot" />
</div>
<div className="flex h-8 w-8 items-center justify-center">
<img src={PrismLogo} alt="prism" className="animate-bounce" />
</div>
</div>
</div>
Expand Down