Skip to content

Commit 67f4847

Browse files
committed
Remove attempts count in MarkdownLayout
1 parent b9b9471 commit 67f4847

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

src/layouts/MarkdownLayout.astro

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,10 @@ const availableProblemSets = problemSets.filter(
4848
<thead>
4949
<tr>
5050
<th class="bg-gray-200 border border-gray-300 px-4 py-2 text-left">
51-
Problem name
51+
Problem set
5252
</th>
5353
<th class="bg-gray-200 border border-gray-300 px-4 py-2 text-left">
54-
Details
55-
</th>
56-
<th class="bg-gray-200 border border-gray-300 px-4 py-2 text-left">
57-
Attempts
54+
Download
5855
</th>
5956
</tr>
6057
</thead>
@@ -66,19 +63,16 @@ const availableProblemSets = problemSets.filter(
6663
forks: number;
6764
}) => (
6865
<tr>
69-
<td class="border border-gray-300 px-4 py-2 text-left">
70-
{problemSet.name}
71-
</td>
7266
<td class="border border-gray-300 px-4 py-2 text-left">
7367
<a
7468
target="_blank"
7569
href={problemSet.html_url}
7670
>
77-
Link
71+
{problemSet.name}
7872
</a>
7973
</td>
8074
<td class="border border-gray-300 px-4 py-2 text-left">
81-
{problemSet.forks}
75+
<code>bash download.sh {problemSet.name}</code>
8276
</td>
8377
</tr>
8478
),

0 commit comments

Comments
 (0)