Skip to content

Commit

Permalink
fix: head title
Browse files Browse the repository at this point in the history
  • Loading branch information
ThEditor committed Sep 3, 2024
1 parent 015527c commit 2e9acaf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions frontend/src/html/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<link rel="manifest" href="/manifest.json" />
<meta
name="name"
content="Monkeytype | A minimalistic, customizable typing test"
content="Lugtype | A minimalistic, customizable typing test"
/>
<meta name="image" content="https://monkeytype.com/images/mtsocial.png" />
<meta
Expand All @@ -67,7 +67,7 @@
<meta name="author" content="Miodec" />
<meta
property="og:title"
content="Monkeytype | A minimalistic, customizable typing test"
content="Lugtype | A minimalistic, customizable typing test"
/>
<meta property="og:url" content="https://type.lugvitc.net/" />
<meta property="og:type" content="website" />
Expand All @@ -81,7 +81,7 @@
/>
<meta
name="twitter:title"
content="Monkeytype | A minimalistic, customizable typing test"
content="Lugtype | A minimalistic, customizable typing test"
/>
<meta
name="twitter:image"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/ts/utils/misc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ export function updateTitle(title?: string): void {

if (title === undefined || title === "") {
document.title =
local + "Monkeytype | A minimalistic, customizable typing test";
local + "Lugtype | A minimalistic, customizable typing test";
} else {
document.title = local + title;
}
Expand Down

0 comments on commit 2e9acaf

Please sign in to comment.