File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export default function DocsLayout({children}: DocsLayoutProps) {
33
33
/>
34
34
</ div >
35
35
36
- < ScriptProviders isKapaEnabled = { false } />
36
+ < ScriptProviders />
37
37
</ >
38
38
) ;
39
39
}
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ export default function DocsLayout({children}: DocsLayoutProps) {
40
40
/>
41
41
</ div >
42
42
43
- < ScriptProviders isKapaEnabled = { false } />
43
+ < ScriptProviders />
44
44
</ >
45
45
) ;
46
46
}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import * as React from "react";
2
2
import Script from "next/script" ;
3
3
4
4
5
- export function ScriptProviders ( { isKapaEnabled} : { isKapaEnabled ?: boolean } ) {
5
+ export function ScriptProviders ( { isKapaEnabled = true } : { isKapaEnabled ?: boolean } ) {
6
6
if ( ! isKapaEnabled ) return null ;
7
7
8
8
return (
You can’t perform that action at this time.
0 commit comments