diff options
author | Leo Lamprecht <leo.lamprecht@icloud.com> | 2023-10-31 03:25:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-30 19:25:19 -0700 |
commit | 68c809b09a056fd5e28f15fe6a114dfbb8295ba4 (patch) | |
tree | 4841ca5a2b5f67b469b51e55760310fad9f85a2d /src/lib/strings | |
parent | 21f7a2a247e8270df36fe20a8bb68e4bf558561c (diff) | |
download | voidsky-68c809b09a056fd5e28f15fe6a114dfbb8295ba4.tar.zst |
Use more beautiful title separator (#1728)
Diffstat (limited to 'src/lib/strings')
-rw-r--r-- | src/lib/strings/headings.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/strings/headings.ts b/src/lib/strings/headings.ts index a88a69645..f9a062492 100644 --- a/src/lib/strings/headings.ts +++ b/src/lib/strings/headings.ts @@ -1,4 +1,4 @@ export function bskyTitle(page: string, unreadCountLabel?: string) { const unreadPrefix = unreadCountLabel ? `(${unreadCountLabel}) ` : '' - return `${unreadPrefix}${page} - Bluesky` + return `${unreadPrefix}${page} — Bluesky` } |