Skip to content

Commit 00e61d6

Browse files
committed
fix: use correct key path
1 parent 6f90a84 commit 00e61d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pages/404.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function NotFound(props: any) {
99
const siteTitle = get(this, "props.data.site.siteMetadata.title");
1010
return (
1111
<Layout>
12-
<Helmet title={`${props.intl.messages.notfound.title} | ${siteTitle}`} />
12+
<Helmet title={`${props.intl.messages.notfound.header} | ${siteTitle}`} />
1313
<h2>{props.intl.messages.notfound.description}</h2>
1414
</Layout>
1515
);

0 commit comments

Comments
 (0)