diff --git a/web/src/app/community/page.tsx b/web/src/app/community/page.tsx index a775a9e8..1103e503 100644 --- a/web/src/app/community/page.tsx +++ b/web/src/app/community/page.tsx @@ -1,4 +1,5 @@ import type { Metadata } from "next" +import { Suspense } from "react" import { CommunityIconSearch } from "@/components/community-icon-search" import { BASE_URL } from "@/constants" import { getCommunitySubmissions } from "@/lib/community" @@ -49,7 +50,9 @@ export default async function CommunityPage() {

Search through our collection of {icons.length} community-submitted icons.

- + Loading...}> + + ) }