Skip to content

Commit

Permalink
Improve code readability
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasWanke committed Oct 29, 2024
1 parent e0e0eb2 commit 04074fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/team/PersonImage.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const images = import.meta.glob<{ default: ImageMetadata }>(
<Image
class={clsx(
"mx-auto h-40 w-40 rounded-full object-cover shadow-lg xl:h-56 xl:w-56",
!!imagePath || "p-5"
!imagePath && "p-5"
)}
src={imagePath ? images[imagePath]() : WsgHandsImage}
alt=""
Expand Down

0 comments on commit 04074fb

Please sign in to comment.