Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
devashish2024 committed Apr 10, 2024
1 parent 968bbb3 commit a7ecd39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/components/Chat.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const Chat = () => {
<div className="no-scrollbar mt-16 pb-12 overflow-hidden ">
<div className="flex flex-row justify-center">
<Image
src="/img/gpt.svg"
src="./img/gpt.svg"
alt="ChatGPT"
width={50}
className="rounded-full p-1 text-white bg-black border shadow-md shadow-white inline-flex invert"
Expand All @@ -78,15 +78,15 @@ export const Chat = () => {
<div key={index} className="mt-4">
{msg.isUser ? (
<Image
src="/img/user.png"
src="./img/user.png"
alt="User"
width={25}
height={25}
className="inline-flex"
/>
) : (
<Image
src="/img/gpt.svg"
src="./img/gpt.svg"
alt="FreeGPT"
width={25}
className="rounded-full p-1 text-white bg-[#19afc3] inline-flex"
Expand Down

0 comments on commit a7ecd39

Please sign in to comment.