blob: a88a696458d7ce63ba2ba3e3f984158a3753e1dd (
plain) (
blame)
1
2
3
4
|
export function bskyTitle(page: string, unreadCountLabel?: string) {
const unreadPrefix = unreadCountLabel ? `(${unreadCountLabel}) ` : ''
return `${unreadPrefix}${page} - Bluesky`
}
|