Skip to content

Commit

Permalink
fix: Update image paths in ChatList component
Browse files Browse the repository at this point in the history
  • Loading branch information
Sma1lboy committed Nov 2, 2024
1 parent 69e7803 commit 822a2f4
Show file tree
Hide file tree
Showing 3 changed files with 123 additions and 11 deletions.
126 changes: 119 additions & 7 deletions frontend/public/codefox.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions frontend/src/components/chat/chat-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default function ChatList({
<div className="w-full h-full flex justify-center items-center">
<div className="flex flex-col items-center">
<img
src="/codefox.png"
src="/codefox.svg"
alt="AI"
className="h-24 w-24 aspect-square object-contain dark:invert"
/>
Expand Down Expand Up @@ -170,7 +170,7 @@ export default function ChatList({
<div className="flex items-end gap-2">
<Avatar className="flex justify-start items-center">
<AvatarImage
src="/codefox.png"
src="/codefox.svg"
alt="AI"
className="h-full w-full object-contain dark:invert"
/>
Expand All @@ -189,7 +189,7 @@ export default function ChatList({
<div className="flex pl-4 pb-4 gap-2 items-center">
<Avatar className="h-10 w-10 flex justify-start items-center">
<AvatarImage
src="/codefox.png"
src="/codefox.svg"
alt="AI"
className="h-full w-full object-contain dark:invert"
/>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function Sidebar({
<div className="flex gap-3 items-center">
{!isCollapsed && !isMobile && (
<Image
src="/codefox.png"
src="/codefox.svg"
alt="AI"
width={28}
height={28}
Expand Down

0 comments on commit 822a2f4

Please sign in to comment.