File tree 2 files changed +11
-1
lines changed
__tests__/shared/__snapshots__
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ exports[`Snapshot match 1`] = `
5
5
<HelmetWrapper
6
6
defer = { true }
7
7
encodeSpecialCharacters = { true }
8
+ htmlAttributes = {
9
+ Object {
10
+ " lang" : " en" ,
11
+ }
12
+ }
8
13
>
9
14
<meta
10
15
content = " #FFFFFF"
@@ -34,6 +39,11 @@ exports[`Snapshot match 2`] = `
34
39
<HelmetWrapper
35
40
defer = { true }
36
41
encodeSpecialCharacters = { true }
42
+ htmlAttributes = {
43
+ Object {
44
+ " lang" : " en" ,
45
+ }
46
+ }
37
47
>
38
48
<meta
39
49
content = " #FFFFFF"
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ if (process.env.NODE_ENV === 'production') {
34
34
export default function App ( ) {
35
35
return (
36
36
< div >
37
- < Helmet >
37
+ < Helmet htmlAttributes = { { lang : 'en' } } >
38
38
< meta name = "theme-color" content = "#FFFFFF" />
39
39
< link rel = "manifest" href = "/challenges/manifest.json" />
40
40
</ Helmet >
You can’t perform that action at this time.
0 commit comments