Skip to content

Commit c53d414

Browse files
committed
fix: h3 nesting hydration warning
1 parent 342782a commit c53d414

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

app/[locale]/what-is-ethereum/page.tsx

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -681,9 +681,7 @@ const Page = async ({ params }: { params: Promise<{ locale: Lang }> }) => {
681681
<Card className="overflow-hidden rounded-2xl border">
682682
<CardTitle className="flex items-center gap-4 border-b bg-background-highlight p-4">
683683
<User className="size-8 text-accent-a" />
684-
<h3 className="text-2xl">
685-
{t("page-what-is-ethereum-start-individuals-title")}
686-
</h3>
684+
{t("page-what-is-ethereum-start-individuals-title")}
687685
</CardTitle>
688686
<CardContent className="space-y-12 p-8">
689687
<div className="space-y-6">
@@ -754,9 +752,7 @@ const Page = async ({ params }: { params: Promise<{ locale: Lang }> }) => {
754752
<Card className="overflow-hidden rounded-2xl border">
755753
<CardTitle className="flex items-center gap-4 border-b bg-background-highlight p-4">
756754
<SquareCode className="size-8 text-accent-b" />
757-
<h3 className="text-2xl">
758-
{t("page-what-is-ethereum-start-developers-title")}
759-
</h3>
755+
{t("page-what-is-ethereum-start-developers-title")}
760756
</CardTitle>
761757
<CardContent className="space-y-12 p-8">
762758
<div className="space-y-6">
@@ -798,9 +794,7 @@ const Page = async ({ params }: { params: Promise<{ locale: Lang }> }) => {
798794
<Card className="overflow-hidden rounded-2xl border">
799795
<CardTitle className="flex items-center gap-4 border-b bg-background-highlight p-4">
800796
<Landmark className="size-8 text-accent-c" />
801-
<h3 className="text-2xl">
802-
{t("page-what-is-ethereum-start-business-title")}
803-
</h3>
797+
{t("page-what-is-ethereum-start-business-title")}
804798
</CardTitle>
805799
<CardContent className="space-y-12 p-8">
806800
<div className="space-y-6">

0 commit comments

Comments
 (0)