fix: Settings page picture url fix (#55673)

This commit is contained in:
Gagan Bhullar
2024-07-30 01:22:38 -06:00
committed by GitHub
parent 2e9e42c74e
commit 9090c0803f
3 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -494,7 +494,7 @@ ${isLinkSentWithinLimitTTL}`
about: req.body.about,
name: req.body.name,
location: req.body.location,
...(hasProtocol && { picture: req.body.picture })
picture: hasProtocol ? req.body.picture : ''
}
});