1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-25 08:35:42 +02:00

fix: remove log

This commit is contained in:
Arik Chakma
2025-09-03 15:57:36 +06:00
parent f8d73229aa
commit 20cba6762f

View File

@@ -105,7 +105,6 @@ export async function officialRoadmapDetails(roadmapSlug: string) {
return roadmap; return roadmap;
} catch (error) { } catch (error) {
if (FetchError.isFetchError(error) && error.status === 404) { if (FetchError.isFetchError(error) && error.status === 404) {
console.log('Roadmap not found', roadmapSlug);
return null; return null;
} }