diff --git a/src/app/(app)/problemset/layout.tsx b/src/app/(app)/problemset/layout.tsx index cc8fd83..b3c2b26 100644 --- a/src/app/(app)/problemset/layout.tsx +++ b/src/app/(app)/problemset/layout.tsx @@ -1,6 +1,4 @@ -import { Suspense } from "react"; import { Banner } from "@/components/banner"; -import { Loading } from "@/components/loading"; import { AvatarButton } from "@/components/avatar-button"; interface ProblemsetLayoutProps { @@ -15,9 +13,7 @@ export default function ProblemsetLayout({ children }: ProblemsetLayoutProps) {
- }> - {children} - + {children}
);