Skip to content

Commit

Permalink
fix incorrect image path
Browse files Browse the repository at this point in the history
  • Loading branch information
konstantin-lukas committed Nov 22, 2024
1 parent a417e45 commit 7d1002f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/chair/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function PeopleCard({ person }: { person: Person }) {
<div className="mt-12 flex items-center gap-4 sm:gap-6">
<div className="relative size-24 shrink-0 overflow-hidden rounded-full md:size-32">
<Image
src={"/alanakbik.github.io" + (person?.image ?? "/people/unknown.svg")}
src={(person?.image ?? "/people/unknown.svg")}
className="select-none object-cover"
draggable={false}
alt=""
Expand Down

0 comments on commit 7d1002f

Please sign in to comment.