Skip to content

Commit 6d1dde6

Browse files
committed
add missing Suspense wrapper around lazy component
1 parent 38acf90 commit 6d1dde6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/pages/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,9 @@ const HomePage = ({
290290
<p className="mt-8 text-xl font-bold">
291291
{t("page-index:page-index-activity-description")}
292292
</p>
293-
<StatsBoxGrid metricResults={metricResults} />
293+
<Suspense fallback={<Skeleton />}>
294+
<StatsBoxGrid metricResults={metricResults} />
295+
</Suspense>
294296
</div>
295297
</SectionContent>
296298
</Section>

0 commit comments

Comments
 (0)