Skip to content

Commit

Permalink
chore: replace title hyphens
Browse files Browse the repository at this point in the history
  • Loading branch information
ddiu8081 committed May 24, 2023
1 parent 359fb95 commit 0803358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/main/Conversation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default () => {

createEffect(() => {
const conversation = currentConversation()
document.title = conversation ? `${(conversation.name || t('conversations.untitled'))} Anse` : 'Anse'
document.title = conversation ? `${(conversation.name || t('conversations.untitled'))} - Anse` : 'Anse'
const link = document.querySelector("link[rel~='icon']") as HTMLLinkElement
if (link) {
const conversationIcon = conversation?.icon ? `data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>${conversation.icon}</text></svg>` : null
Expand Down

0 comments on commit 0803358

Please sign in to comment.