1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-01-17 14:18:17 +01:00

Remove the "Feature" button from AI generated roadmaps

This commit is contained in:
Kamran Ahmed 2024-11-29 11:55:17 +05:00
parent 18f77a01f8
commit 7ba2d22463

View File

@ -13,7 +13,7 @@ export function ShowcaseStatus(props: ShowcaseStatusProps) {
const { showcaseStatus } = currentRoadmap; const { showcaseStatus } = currentRoadmap;
const [showSubmitWarning, setShowSubmitWarning] = useState(false); const [showSubmitWarning, setShowSubmitWarning] = useState(false);
if (!currentRoadmap || showcaseStatus) { if (!currentRoadmap || showcaseStatus || currentRoadmap.aiRoadmapId) {
return null; return null;
} }