diff --git a/packages/nextjs/app/profile/[address]/page.tsx b/packages/nextjs/app/profile/[address]/page.tsx index 39f0827..0841cc5 100644 --- a/packages/nextjs/app/profile/[address]/page.tsx +++ b/packages/nextjs/app/profile/[address]/page.tsx @@ -122,7 +122,7 @@ const ProfilePage: NextPage = () => { if (!isEditing && profileInfo) { setUsername(profileInfo[0] || ""); setBio(profileInfo[1] || ""); - setProfilePicture(profileInfo[2] != "" ? profileInfo[2] : defaultProfilePicture); + setProfilePicture(profileInfo[2] ? profileInfo[2] : defaultProfilePicture); setWebsite(profileInfo[3] || ""); } }, [profileInfo, isEditing]);