Skip to content

Commit 7983375

Browse files
committed
Fix build error
1 parent a13e8e7 commit 7983375

File tree

4 files changed

+13271
-1113
lines changed

4 files changed

+13271
-1113
lines changed

app/packages/[group]/[name]/_components/pack.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ export function Pack({
7777
</div>
7878
<Divider />
7979
{pack.readme ? (
80-
<ReactMarkdown className="prose dark:prose-invert" skipHtml>
81-
{pack.readme}
82-
</ReactMarkdown>
80+
<div className="prose dark:prose-invert">
81+
<ReactMarkdown skipHtml>{pack.readme}</ReactMarkdown>
82+
</div>
8383
) : (
8484
<p className="text-white/50">no readme found</p>
8585
)}

next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
5+
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

0 commit comments

Comments
 (0)