Skip to content

Commit

Permalink
fix: fix usage of <td> instead of <th>
Browse files Browse the repository at this point in the history
  • Loading branch information
famouswizard authored Mar 8, 2025
1 parent 168589c commit 5cd1eb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/web/app/(base-org)/third-party-cookies/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ export default async function ThirdPartyCookies() {
<table className="w-full">
<thead>
<tr className="border-b-[1px] border-black bg-[#222]">
<td className="w-1/4 p-4 font-medium">Name</td>
<td className="w-2/4 p-4 font-medium">Purpose</td>
<td className="w-1/4 p-4 font-medium">Domain</td>
<th className="w-1/4 p-4 font-medium">Name</th>
<th className="w-2/4 p-4 font-medium">Purpose</th>
<th className="w-1/4 p-4 font-medium">Domain</th>
</tr>
</thead>
<tbody>
Expand Down

0 comments on commit 5cd1eb2

Please sign in to comment.