Skip to content

Commit 7343108

Browse files
committed
Update index.tsx
1) En la línea de importación: Eliminar o comentar SiTwitter 2) En la sección de renderizado: Comentar todo el bloque condicional que muestra el componente de Twitter
1 parent 01d50df commit 7343108

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/components/details-card/index.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import {
2222
import { FaSquareThreads } from 'react-icons/fa6';
2323
import { MdLocationOn } from 'react-icons/md';
2424
import { RiMailFill, RiPhoneFill } from 'react-icons/ri';
25-
import { SiResearchgate, SiTwitter, SiUdemy, SiLeetcode } from 'react-icons/si';
25+
import { SiResearchgate, /* SiTwitter, */ SiUdemy, SiLeetcode } from 'react-icons/si';
2626
import { Profile } from '../../interfaces/profile';
2727
import {
2828
SanitizedGithub,
@@ -210,14 +210,15 @@ const DetailsCard = ({ profile, loading, social, github }: Props) => {
210210
link={`https://www.researchgate.net/profile/${social.researchGate}`}
211211
/>
212212
)}
213-
{social?.twitter && (
213+
{/* Comentar el bloque de Twitter ya que no lo usas en tu perfil */}
214+
{/* social?.twitter && (
214215
<ListItem
215216
icon={<SiTwitter />}
216217
title="Twitter:"
217218
value={social.twitter}
218219
link={`https://twitter.com/${social.twitter}`}
219220
/>
220-
)}
221+
) */}
221222
{social?.mastodon && (
222223
<ListItem
223224
icon={<FaMastodon />}

0 commit comments

Comments
 (0)