Skip to content

Commit 764931a

Browse files
committed
fix position for carbon
1 parent 21b25da commit 764931a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/theme/TOCItems/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ import type { WrapperProps } from "@docusaurus/types";
22
import { Carbon } from "@site/src/components/carbon";
33
import TOCItems from "@theme-original/TOCItems";
44
import type TOCItemsType from "@theme/TOCItems";
5-
import React, { type ReactNode } from "react";
5+
import { type ReactNode } from "react";
66

77
type Props = WrapperProps<typeof TOCItemsType>;
88

99
export default function TOCItemsWrapper(props: Props): ReactNode {
1010
return (
1111
<>
1212
<TOCItems {...props} />
13+
<Carbon />
1314
</>
1415
);
1516
}

0 commit comments

Comments
 (0)