Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Set displayName and description to undefined if no values are provided during a profile edit (#10016)

authored by

RetroSunstar and committed by
GitHub
be0d00de dbba97f2

+2 -2
+2 -2
src/state/queries/profile.ts
··· 176 176 if (typeof updates === 'function') { 177 177 next = updates(next) 178 178 } else { 179 - next.displayName = updates.displayName 180 - next.description = updates.description 179 + next.displayName = updates.displayName || undefined 180 + next.description = updates.description || undefined 181 181 if ('pinnedPost' in updates) { 182 182 next.pinnedPost = updates.pinnedPost 183 183 }