Skip to content

Commit a0083f2

Browse files
1 parent 239f62b commit a0083f2

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

docs/pages/_app.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable @typescript-eslint/naming-convention */
12
import { Analytics } from '@vercel/analytics/react'
23

34
export default function App({ Component, pageProps }) {

docs/theme.config.tsx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -105,19 +105,19 @@ const config: DocsThemeConfig = {
105105
}
106106
}
107107

108-
// TODO: get memoization working here
109-
function titleComponent({
110-
title
111-
}: {
112-
title: string
113-
type: string
114-
route: string
115-
}) {
116-
if (title === 'Guide' || title === 'Documentation') {
117-
return <b>{title}</b>
118-
}
108+
// // TODO: get memoization working here
109+
// function titleComponent({
110+
// title
111+
// }: {
112+
// title: string
113+
// type: string
114+
// route: string
115+
// }) {
116+
// if (title === 'Guide' || title === 'Documentation') {
117+
// return <b>{title}</b>
118+
// }
119119

120-
return <span>{title}</span>
121-
}
120+
// return <span>{title}</span>
121+
// }
122122

123123
export default config

0 commit comments

Comments
 (0)