Skip to content

Commit

Permalink
plan: fix suspense
Browse files Browse the repository at this point in the history
  • Loading branch information
makinbacon21 committed Nov 12, 2024
1 parent aa3f361 commit c323951
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,11 @@ export default async function Page(props: {
homePageProps["fullCourseList"] = (
<Suspense
fallback={
<Skeleton className="rounded-lg w-8/12 h-full align-top justify-start" />
<div className="grid gap-4 ">
<Skeleton className="rounded-lg w-full h-48 align-top justify-start" />
<Skeleton className="rounded-lg w-full h-48 align-top justify-start" />
<Skeleton className="rounded-lg w-full h-48 align-top justify-start" />
</div>
}
>
<FullCourseList dotw={dotw} query={query} stime={stime} term={term} />
Expand Down

0 comments on commit c323951

Please sign in to comment.