Skip to content

Commit fd6d635

Browse files
committed
fix: consistent heading hierarchy
1 parent 420b142 commit fd6d635

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

components/Admin/ChronikURLs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ interface IProps {
55
}
66
export default function ChronikURLs ({ chronikUrls }: IProps): JSX.Element {
77
return <>
8-
<h2>Chronik URLs</h2>
8+
<h3>Chronik URLs</h3>
99
<div className="paybutton-table-ctn columns">
1010
<div>
1111
<h4>eCash</h4>

components/Admin/RegisteredUsers.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default function RegisteredUsers ({ users }: IProps): JSX.Element {
4747
}))
4848

4949
return <>
50-
<h2>Registered Users</h2>
50+
<h3>Registered Users</h3>
5151
<TableContainer columns={columns} data={data} ssr />
5252
</>
5353
}

components/Admin/SubscribedAddresses.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ export default function SubscribedAddresses (): JSX.Element {
4242
)
4343

4444
return <>
45-
<h2>Subscribed Addresses</h2>
46-
<h3> eCash</h3>
45+
<h3>Subscribed Addresses</h3>
46+
<h4> eCash</h4>
4747
<TableContainer columns={columns} data={ecashSubscribedAddresses ?? []} ssr/>
48-
<h3> Bitcoin Cash</h3>
48+
<h4> Bitcoin Cash</h4>
4949
<TableContainer columns={columns} data={bitcoincashSubscribedAddresses ?? []} ssr/>
5050
</>
5151
}

0 commit comments

Comments
 (0)