Skip to content

Commit 7863720

Browse files
authored
[CED] Remove Type column from ListTutorials (cloudflare#26628)
1 parent b7391ed commit 7863720

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/components/ListTutorials.astro

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const currentProduct = await getEntry("products", currentSection!);
1414
1515
if (!currentProduct) {
1616
throw new Error(
17-
`[ListTutorials] Unable to find product YAML for ${currentSection}.`,
17+
`[ListTutorials] Unable to find product YAML for ${currentSection}.`
1818
);
1919
}
2020
@@ -46,7 +46,6 @@ const timeAgo = (date?: Date) => {
4646
<tr>
4747
<td>Name</td>
4848
<td>Last Updated</td>
49-
<td>Type</td>
5049
<td>Difficulty</td>
5150
</tr>
5251
</thead>
@@ -67,7 +66,6 @@ const timeAgo = (date?: Date) => {
6766
<Fragment set:html={anchor} />
6867
</td>
6968
<td>{timeAgo(tutorial.data.reviewed)}</td>
70-
<td>📝 Tutorial</td>
7169
<td>{tutorial.data.difficulty}</td>
7270
</tr>
7371
);

0 commit comments

Comments
 (0)