Skip to content

Commit

Permalink
fix: correct links on tutors time
Browse files Browse the repository at this point in the history
  • Loading branch information
edeleastar committed Jan 13, 2023
1 parent 608472b commit aa04ef4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions apps/course/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Part of the [Tutors SDK](https://github.com/tutors-sdk) project, tutors-next is

The reader is intended for educational content, some representative examples:

- <https://wit-hdip-comp-sci.github.io>
- <https://oth-mobile-app-dev-2019.netlify.app>
- <https://wit-msc-agile-2019.netlify.app>
- <https://classic-design-patterns.netlify.app>
- <https://wit-hdip-comp-sci-2019.netlify.app>
- <https://reader.tutors.dev/course/wit-hdip-comp-sci-showcase>
- <https://reader.tutors.dev/course/full-stack-web-dev-oth-2022>
- <https://reader.tutors.dev/course/agile-dev-2021>
- <https://tutors-svelte.netlify.app/course/classic-design-patterns>
- <https://tutors-svelte.netlify.app/course/wit-hdip-comp-sci-2019>

Documentation for the Tutors SDK can be found at the [Tutors Docs](http://tutors-docs.netlify.app/) website.

Expand Down
2 changes: 1 addition & 1 deletion apps/course/src/lib/support/TutorsTerms.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<a target="_blank" rel="noopener noreferrer" href="https://github.com/tutors-sdk/tutors-faqs/blob/main/tutors-time-faq.md"> Tutors Time FAQ </a>
</li>
<li>
<a target="_blank" rel="noopener noreferrer" href="https://github.com/tutors-sdk/tutors/blob/main/sites/tutors-time-reader/tutors-time-faq.md">Tutors Live FAQ </a>
<a target="_blank" rel="noopener noreferrer" href="https://github.com/tutors-sdk/tutors-faqs/blob/main/tutors-live-faq.md">Tutors Live FAQ </a>
</li>
</ul>
<p class="p-2">
Expand Down
2 changes: 1 addition & 1 deletion packages/tutors-reader-lib/src/utils/course-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export async function getCourseSummary(courseId: string): Promise<CourseSummary>
title: lo.title,
img: lo.img.replace("{{COURSEURL}}", `${courseId}.netlify.app`),
icon: lo.properties?.icon,
route: `https://reader.tutors.dev//#/course/${courseId}.netlify.app`,
route: `https://reader.tutors.dev/course/${courseId}.netlify.app`,
visits: 0,
count: 0,
isPrivate: lo.properties?.private,
Expand Down

0 comments on commit aa04ef4

Please sign in to comment.