Skip to content

Commit 012b22b

Browse files
committed
Change URL of exercises
1 parent b395f0e commit 012b22b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Dashboard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ function Dashboard() {
140140
.filter(exercise => parsedUserProgress.has(exercise.exercise_name))
141141
.map((exercise, idx) => (
142142
<tr key={idx}>
143-
<td className="border border-gray-300 px-4 py-2 text-left"><a target="_blank" href={`https://git-mastery.github.io/exercises/${exercise.exercise_name.replace("-", "_")}`}><code className="underline text-blue-800">{exercise.exercise_name}</code></a></td>
143+
<td className="border border-gray-300 px-4 py-2 text-left"><a target="_blank" href={`https://git-mastery.github.io/exercises-directory#exercise-${exercise.exercise_name}`}><code className="underline text-blue-800">{exercise.exercise_name}</code></a></td>
144144
<td className="border border-gray-300 px-4 py-2 text-left">{parsedUserProgress.get(exercise.exercise_name)}</td>
145145
</tr>
146146
))}

0 commit comments

Comments
 (0)