Update animation of progress switcher

feat/roadcards
Kamran Ahmed 1 year ago
parent 36b2a8f2d7
commit a48d39a863
  1. 7
      src/components/HeroSection/FavoriteRoadmaps.tsx

@ -56,7 +56,7 @@ export function FavoriteRoadmaps() {
setTimeout(() => {
setContainerOpacity(100);
}, 50);
}, 300);
}, 0);
}
async function loadProgress() {
@ -71,13 +71,16 @@ export function FavoriteRoadmaps() {
}
setProgress(progressList);
setIsLoading(false);
showProgressContainer();
// render progress on featured items
renderProgress(progressList);
}
useEffect(() => {
loadProgress().finally(() => {
setIsLoading(false);
showProgressContainer();
});
}, []);

Loading…
Cancel
Save