Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge: style patch fixes #68

Merged
merged 9 commits into from
Feb 1, 2024
6 changes: 3 additions & 3 deletions components/admin/listing/ApplicantCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ export default function ApplicantCard({ applicant }: ApplicantCardProps) {
<Card className="cursor-pointer" onClick={() => router.push(`/admin/listing/${applicant.listingId}/${applicant.applicantId}`)}>
<div className="flex flex-col items-center mb-1">
<Image
width={96}
height={96}
loader={() => applicant.image}
alt={`${applicant.firstName} ${applicant.lastName} image`}
className="mb-3 rounded-full shadow-lg"
height={96}
className="w-24 h-24 mb-3 shadow-lg relative mx-auto rounded-full overflow-hidden object-cover"
src={applicant.image}
width={96}
/>
<h5 className="mb-1 text-lg font-medium text-gray-900 dark:text-white">
{`${applicant.firstName} ${applicant.lastName}`}
Expand Down
Loading