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