Bluesky app fork with some witchin' additions 💫

allow submitting an empty website field

+5 -1
+5 -1
src/state/queries/profile.ts
··· 185 185 next.pronouns = updates.pronouns 186 186 } 187 187 if ('website' in updates) { 188 - next.website = updates.website 188 + if (updates['website'] && updates['website'].length !== 0) { 189 + next.website = updates.website 190 + } else { 191 + next.website = undefined 192 + } 189 193 } 190 194 } 191 195 if (newUserAvatarPromise) {