File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -249,9 +249,12 @@ export async function update(
249249 details . find ( ".keyboard .value" ) . text ( profile . details ?. keyboard ?? "" ) ;
250250
251251 if (
252- profile . details ?. socialProfiles ?. github !== undefined ||
253- profile . details ?. socialProfiles ?. twitter !== undefined ||
254- profile . details ?. socialProfiles ?. website !== undefined
252+ ( profile . details ?. socialProfiles ?. github !== undefined &&
253+ profile . details ?. socialProfiles ?. github !== "" ) ||
254+ ( profile . details ?. socialProfiles ?. twitter !== undefined &&
255+ profile . details ?. socialProfiles ?. twitter !== "" ) ||
256+ ( profile . details ?. socialProfiles ?. website !== undefined &&
257+ profile . details ?. socialProfiles ?. website !== "" )
255258 ) {
256259 socials = true ;
257260 const socialsEl = details . find ( ".socials .value" ) ;
You can’t perform that action at this time.
0 commit comments