Skip to content

Commit 201c61b

Browse files
committed
chore: kapa ai enabled again
1 parent 6f594fa commit 201c61b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/docs/app/blog/layout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export default function DocsLayout({children}: DocsLayoutProps) {
3333
/>
3434
</div>
3535

36-
<ScriptProviders isKapaEnabled={false} />
36+
<ScriptProviders />
3737
</>
3838
);
3939
}

apps/docs/app/docs/layout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default function DocsLayout({children}: DocsLayoutProps) {
4040
/>
4141
</div>
4242

43-
<ScriptProviders isKapaEnabled={false} />
43+
<ScriptProviders />
4444
</>
4545
);
4646
}

apps/docs/components/scripts/script-providers.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as React from "react";
22
import Script from "next/script";
33

44

5-
export function ScriptProviders({isKapaEnabled}: {isKapaEnabled?: boolean}) {
5+
export function ScriptProviders({isKapaEnabled = true}: {isKapaEnabled?: boolean}) {
66
if (!isKapaEnabled) return null;
77

88
return (

0 commit comments

Comments
 (0)