Update prod service URL

This commit is contained in:
Paul Frazee 2022-11-16 10:06:57 -06:00
parent 4eb993e885
commit 64d095a96b
2 changed files with 2 additions and 2 deletions

View file

@ -112,7 +112,7 @@ export function toNiceDomain(url: string): string {
try {
const urlp = new URL(url)
if (`https://${urlp.host}` === PROD_SERVICE) {
return 'Bluesky.Social'
return 'Bluesky Social'
}
return urlp.host
} catch (e) {