fix: broken type on hero

pull/4446/head
Kamran Ahmed 1 year ago
parent 1b74e86db7
commit 1eb0e8869a
  1. 4
      src/components/HeroSection/FavoriteRoadmaps.tsx

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

Loading…
Cancel
Save