Skip to content

Commit 7036c74

Browse files
committed
fix: allow empty bio
1 parent b8a606f commit 7036c74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/BuildMyProfile/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ const BuildMyProfile = () => {
530530
}
531531
}
532532

533-
if (myProfileData.description != bio && bio != null && bio.trim().length) {
533+
if (myProfileData.description != bio) {
534534
await updateMemberData(authUser.handle, { description: bio });
535535
}
536536

0 commit comments

Comments
 (0)