tangled
alpha
login
or
join now
lemmaeof.gay
/
witchsky.app
forked from
jollywhoppers.com/witchsky.app
0
fork
atom
Bluesky app fork with some witchin' additions 💫
0
fork
atom
overview
issues
pulls
pipelines
allow submitting an empty website field
lemmaeof.gay
1 month ago
952be9d5
711e54d3
+5
-1
1 changed file
expand all
collapse all
unified
split
src
state
queries
profile.ts
+5
-1
src/state/queries/profile.ts
···
185
185
next.pronouns = updates.pronouns
186
186
}
187
187
if ('website' in updates) {
188
188
-
next.website = updates.website
188
188
+
if (updates['website'] && updates['website'].length !== 0) {
189
189
+
next.website = updates.website
190
190
+
} else {
191
191
+
next.website = undefined
192
192
+
}
189
193
}
190
194
}
191
195
if (newUserAvatarPromise) {