Skip to content

Commit

Permalink
fix: set correct src url for cached image
Browse files Browse the repository at this point in the history
  • Loading branch information
JoaquinOlivero committed Aug 1, 2024
1 parent 23b7169 commit da85aa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ManageSlideOver/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ const ManageSlideOver = ({
content={user.displayName}
>
<CachedImage
src={`avatarproxy/${user.avatar}`}
src={`/avatarproxy/${user.avatar}`}
alt={user.displayName}
className="h-8 w-8 scale-100 transform-gpu rounded-full object-cover ring-1 ring-gray-500 transition duration-300 hover:scale-105"
width={32}
Expand Down Expand Up @@ -517,7 +517,7 @@ const ManageSlideOver = ({
content={user.displayName}
>
<CachedImage
src={`avatarproxy/${user.avatar}`}
src={`/avatarproxy/${user.avatar}`}
alt={user.displayName}
className="h-8 w-8 scale-100 transform-gpu rounded-full object-cover ring-1 ring-gray-500 transition duration-300 hover:scale-105"
width={32}
Expand Down

0 comments on commit da85aa9

Please sign in to comment.