1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-28 11:39:52 +02:00

fix: broken type on hero

This commit is contained in:
Kamran Ahmed
2023-09-02 18:00:58 +01:00
parent 1b74e86db7
commit 1eb0e8869a

View File

@@ -1,7 +1,7 @@
import { useEffect, useState } from 'react';
import { EmptyProgress } from './EmptyProgress';
import { httpGet } from '../../lib/http';
import { HeroRoadmaps } from './HeroRoadmaps.tsx';
import { HeroRoadmaps } from './HeroRoadmaps';
import {isLoggedIn} from "../../lib/jwt";
export type UserProgressResponse = {
@@ -122,7 +122,7 @@ export function FavoriteRoadmaps() {
<div className="container min-h-full">
{!isLoading && progress.length == 0 && <EmptyProgress />}
{progress.length > 0 && (
<HeroRoadmaps progress={progress} isLoading={isLoading} />
<HeroRoadmaps customRoadmaps={[]} progress={progress} isLoading={isLoading} />
)}
</div>
</div>