We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fffd7c3 commit 11c7dc6Copy full SHA for 11c7dc6
src/components/SEO.tsx
@@ -67,12 +67,11 @@ export const SEO: FunctionComponent<Props> = ({
67
];
68
return (
69
<Head>
70
- <html lang={lang} />
71
<title>{title}</title>
72
<Favicons />
73
<link rel="manifest" href="/static/manifest/manifest.json" />
74
{meta.map((item, i) => (
75
- <meta key={`meta-${i}`} {...item} />
+ <meta key={i} {...item} />
76
))}
77
</Head>
78
);
src/pages/_document.tsx
@@ -13,7 +13,7 @@ class MyDocument extends Document {
13
<body>
14
<Main />
15
<NextScript />
16
- <script src="https://checkout.razorpay.com/v1/checkout.js" />
+ <script src="https://checkout.razorpay.com/v1/checkout.js" async />
17
</body>
18
</Html>
19
0 commit comments