Skip to content

Commit

Permalink
Update index.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
arifszn committed May 4, 2024
1 parent 228364d commit 61fce38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/details-card/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ const DetailsCard = ({ profile, loading, social, github }: Props) => {
icon={<FaSquareThreads />}
title="Threads:"
value={social.threads}
link={`https://www.threads.net/${social.threads}`}
link={`https://www.threads.net/@${social.threads.replace('@', '')}`}
/>
)}
{social?.youtube && (
Expand All @@ -241,7 +241,7 @@ const DetailsCard = ({ profile, loading, social, github }: Props) => {
<ListItem
icon={<SiUdemy />}
title="Udemy:"
value={`@${social.udemy}`}
value={social.udemy}
link={`https://www.udemy.com/user/${social.udemy}`}
/>
)}
Expand Down

0 comments on commit 61fce38

Please sign in to comment.