diff --git a/client/src/templates/Introduction/components/super-block-accordion.tsx b/client/src/templates/Introduction/components/super-block-accordion.tsx index 4c7a2552143..5a1299ed688 100644 --- a/client/src/templates/Introduction/components/super-block-accordion.tsx +++ b/client/src/templates/Introduction/components/super-block-accordion.tsx @@ -130,7 +130,7 @@ const ComingSoon = ({ children }: { children: ReactNode }) => { const { t } = useTranslation(); return (
  • - {t('misc.coming-soon')} {children} + {children} {t('misc.coming-soon')}
  • ); }; @@ -196,9 +196,17 @@ export const SuperBlockAccordion = ({ // show coming soon on production, and all the challenges in dev if (chapter.comingSoon && !showUpcomingChanges) { return ( - - {t(`intro:full-stack-developer.chapters.${chapter.name}`)} - + <> + + {Object.values(FsdChapters).includes(chapter.name) && ( + + )} + {t(`intro:full-stack-developer.chapters.${chapter.name}`)} + + ); }