diff --git a/src/components/drive/components/LinkTo.tsx b/src/components/drive/components/LinkTo.tsx index 77d7f2ecd..8ebc80bd0 100644 --- a/src/components/drive/components/LinkTo.tsx +++ b/src/components/drive/components/LinkTo.tsx @@ -8,7 +8,7 @@ interface LinkTo { export const LinkTo = ({ text, linkToRedirect }: LinkTo) => { return ( - +

{text}

diff --git a/src/components/shared/sections/RelationalLinks.tsx b/src/components/shared/sections/RelationalLinks.tsx index 0ff90b253..dd3461449 100644 --- a/src/components/shared/sections/RelationalLinks.tsx +++ b/src/components/shared/sections/RelationalLinks.tsx @@ -28,7 +28,7 @@ const RelationalLinks = ({ textContent }: RelationalLinksProps) => { useEffect(() => { if (textContent?.links) { const shuffledLinks = shuffleData(textContent.links); - setCards(shuffledLinks); + setCards(shuffledLinks.slice(0, 3)); } }, [textContent]);