Skip to content

Commit

Permalink
chore: fix cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
shakhzodkudratov committed Oct 16, 2024
1 parent 6f430af commit 9168a43
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/theme.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import CommentsComponent from "@/components/comments";
import CurrentlyListeningComponent from "@/components/currently-listening";
import HeaderComponent from "@/components/header";
import StreamScheduleComponent from "@/components/stream-schedule";
import dynamic from "next/dynamic";
import Head from "next/head";
Expand Down Expand Up @@ -37,7 +36,7 @@ export default function Layout({ children, pageOpts }: NextraThemeLayoutProps) {
);
}

function Wrapper({ children, toc }) {
const Wrapper: React.FC<{ children?: React.ReactNode }> = ({ children }) => {
return (
<main className="prose">
<div className="flex flex-col px-5">
Expand All @@ -53,4 +52,4 @@ function Wrapper({ children, toc }) {
<article className="p-5">{children}</article>
</main>
);
}
};

0 comments on commit 9168a43

Please sign in to comment.