Skip to content

Commit

Permalink
fix: image ratio in endorsee badges
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudobun committed Jun 11, 2024
1 parent 7177c70 commit 43fd2b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion packages/dapp/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ export default async function Page({
}

if (!intro) {
return redirect(`${APP_URL}/?intro=true`);
return redirect('http://localhost:3000?intro=true');
// return redirect(`${APP_URL}/?intro=true`);
}

const platform = validateOrGetDefaultPlatform(searchParams.platform);
Expand Down
5 changes: 2 additions & 3 deletions packages/dapp/src/components/ProfileAvatar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,10 @@ export const ProfileAvatar = ({
)}
>
<MemoizedImage
className={cn('absolute rounded-full shadow-md')}
className={cn('absolute rounded-full shadow-md object-cover')}
src={avatar ?? blo(address, AVATAR_SIZES[size])}
alt="Profile avatar"
width={AVATAR_SIZES[size]}
height={AVATAR_SIZES[size]}
fill
onLoad={() => setIsLoading(false)}
/>
<Skeleton
Expand Down

0 comments on commit 43fd2b9

Please sign in to comment.