Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kgtkr committed Feb 6, 2024
1 parent d8084f1 commit f43393e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/Title.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type Props = {
function Title({ title }: Props) {
return (
<Head>
<title>{title !== undefined ? `${title} | ` : ""}Kgtkr's Blog</title>
<title>{title !== undefined ? `${title} | ` : ""}Kgtkr&apos;s Blog</title>
{title !== undefined ? (
<meta property="og:title" content={title} />
) : null}
Expand Down
2 changes: 1 addition & 1 deletion pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function App({ Component, pageProps, router }: AppProps) {
router.asPath === "/" ? styles.homeHeader : ""
}`}
>
<Link href="/">Kgtkr's Blog</Link>
<Link href="/">Kgtkr&apos;s Blog</Link>
</header>
<Component {...pageProps} />
<footer className={styles.footer}>
Expand Down

0 comments on commit f43393e

Please sign in to comment.