Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/drive/components/LinkTo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface LinkTo {

export const LinkTo = ({ text, linkToRedirect }: LinkTo) => {
return (
<Link href={linkToRedirect} target="_blank" className="flex flex-row items-center space-x-1 text-primary">
<Link href={linkToRedirect} className="flex flex-row items-center space-x-1 text-primary">
<p className="text-base font-medium">{text}</p>
<ArrowUpRight size={20} weight="bold" />
</Link>
Expand Down
2 changes: 1 addition & 1 deletion src/components/shared/sections/RelationalLinks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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]);

Expand Down
Loading