diff --git a/src/pages/vibe-check/index.tsx b/src/pages/vibe-check/index.tsx index 80526db66487..df2561960ef7 100644 --- a/src/pages/vibe-check/index.tsx +++ b/src/pages/vibe-check/index.tsx @@ -10,6 +10,7 @@ import OSButton from 'components/OSButton' import { DebugContainerQuery } from 'components/DebugContainerQuery' import SuggestedLinksBlock from 'components/SuggestedLinksBlock' +import { useApp } from '../../context/App' const FinalSlide = () => (
@@ -58,6 +59,7 @@ function Slide({ card, slideIndex }: { card: any; slideIndex: number }) { export default function Ick() { const [slideIndex, setSlideIndex] = useState(0) + const { siteSettings } = useApp() const cards = HomepageCards const totalSlides = cards.length + 1 // +1 for the final custom slide @@ -102,7 +104,12 @@ export default function Ick() { {!isFinalSlide && (

- You'll hate if... + You'll hate{' '} + {' '} + if...

)}