Skip to content

Commit 1d746fd

Browse files
author
Dimitri POSTOLOV
authored
some small fixes that I found (#274)
1 parent bd983c5 commit 1d746fd

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,5 @@ yarn-error.log*
3636

3737
# typescript
3838
*.tsbuildinfo
39+
40+
.idea/

components/Paragraph.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const Paragraph = ({ children, ...props }: ParagraphProps) => {
1010
sx={{
1111
mt: Spacing['16px'],
1212
mb: Spacing['24px'],
13-
'&:first-child': { mt: 0 },
13+
'&:first-of-type': { mt: 0 },
1414
'&:last-child': { mb: 0 },
1515
}}
1616
{...props}

pages/_app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const DEFAULT_SEO_PROPS: DefaultSeoProps = {
3030
title: 'The Graph Docs',
3131
description: 'Browse the latest developer documentation including API reference, articles, and sample code',
3232
openGraph: {
33-
site_name: 'The Graph Docs',
33+
siteName: 'The Graph Docs',
3434
type: 'website',
3535
url: 'https://thegraph.com/docs/',
3636
locale: defaultLocale,

0 commit comments

Comments
 (0)