Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcossIC committed Dec 19, 2024
2 parents d1bff6f + 9b6dede commit 3155520
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const VideoLessons = ({ moduleActiveId, lessons, courseId }: VideoLessonsProps)
<Link
href={{
pathname: `${courseId}`,
query: { lessonActive: `${lesson?.['_id']}-${moduleActiveId}` || lesson.id },
query: { lessonActive: `${moduleActiveId}-${lesson?.['_id']}` || lesson.id },
}}
scroll={false}
className={cn(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const OptimizeCard: React.FC<OptimizeCardProps> = ({
variant={'default'}
size={'fit'}
className="mb-6 mt-2 rounded-md px-4 py-3 text-white hover:bg-fuchsia-800">
<Link href="/appstore">{buttonText}</Link>
<Link href="/courses">{buttonText}</Link>
</Button>
</div>
);
Expand Down

0 comments on commit 3155520

Please sign in to comment.