diff --git a/src/components/PersonalizedRoadmap/PersonalizedRoadmap.tsx b/src/components/PersonalizedRoadmap/PersonalizedRoadmap.tsx index 25a50da5c..9c9345e4b 100644 --- a/src/components/PersonalizedRoadmap/PersonalizedRoadmap.tsx +++ b/src/components/PersonalizedRoadmap/PersonalizedRoadmap.tsx @@ -104,6 +104,11 @@ export function PersonalizedRoadmap(props: PersonalizedRoadmapProps) { onStart: () => { setIsModalOpen(false); }, + onError: (error) => { + for (const nodeId of allPendingNodeIds) { + renderTopicProgress(nodeId, 'pending'); + } + }, onData: (data) => { const { topicIds } = data; topicIds.forEach((topicId) => { diff --git a/src/components/SQLCourse/AuthorCredentials.tsx b/src/components/SQLCourse/AuthorCredentials.tsx index 3eeec0aa3..9987313ba 100644 --- a/src/components/SQLCourse/AuthorCredentials.tsx +++ b/src/components/SQLCourse/AuthorCredentials.tsx @@ -1,12 +1,11 @@ -import { Award } from 'lucide-react'; export function AuthorCredentials() { return (
Kamran Ahmed Course by @@ -22,7 +21,7 @@ export function AuthorCredentials() { diff --git a/src/components/SQLCourseVariant/AuthorCredentials.tsx b/src/components/SQLCourseVariant/AuthorCredentials.tsx index 4c031e5d2..559d75bff 100644 --- a/src/components/SQLCourseVariant/AuthorCredentials.tsx +++ b/src/components/SQLCourseVariant/AuthorCredentials.tsx @@ -6,7 +6,7 @@ export function AuthorCredentials() { return (
Kamran Ahmed diff --git a/src/components/SQLCourseVariant/MeetYourInstructor.tsx b/src/components/SQLCourseVariant/MeetYourInstructor.tsx index d65d6f403..7ec6a9a53 100644 --- a/src/components/SQLCourseVariant/MeetYourInstructor.tsx +++ b/src/components/SQLCourseVariant/MeetYourInstructor.tsx @@ -35,7 +35,7 @@ export function MeetYourInstructor() {
Kamran Ahmed @@ -43,9 +43,7 @@ export function MeetYourInstructor() {
Kamran Ahmed
- - Founder of roadmap.sh - + Founder of roadmap.sh
@@ -54,7 +52,10 @@ export function MeetYourInstructor() { {features.map((feature, index) => { const IconComponent = feature.icon; return ( -
+
{feature.text} diff --git a/src/pages/[roadmapId]/courses.astro b/src/pages/[roadmapId]/courses.astro index 623f1ea49..227514a3d 100644 --- a/src/pages/[roadmapId]/courses.astro +++ b/src/pages/[roadmapId]/courses.astro @@ -80,6 +80,7 @@ const courses = roadmapData.courses || []; coursesCount={courses.length} projectCount={projects.length} activeTab='courses' + hasAIChat={true} />
diff --git a/src/pages/[roadmapId]/projects.astro b/src/pages/[roadmapId]/projects.astro index 33e94ff81..c434cc4bc 100644 --- a/src/pages/[roadmapId]/projects.astro +++ b/src/pages/[roadmapId]/projects.astro @@ -86,6 +86,7 @@ const { response: userCounts } = activeTab='projects' projectCount={projects.length} coursesCount={roadmapData.courses?.length || 0} + hasAIChat={true} />