Skip to content

Commit 98eb69a

Browse files
committed
Remove Skype and add missing discord references (#760)
1 parent 9ef19a2 commit 98eb69a

File tree

6 files changed

+4
-20
lines changed

6 files changed

+4
-20
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ const CONFIG = {
224224
medium: 'arifszn',
225225
dev: 'arifszn',
226226
stackoverflow: '', // example: '1/jeff-atwood'
227-
skype: '',
227+
discord: '',
228228
telegram: '',
229229
website: 'https://www.arifszn.com',
230230
phone: '',
@@ -508,7 +508,7 @@ Your avatar and bio will be fetched from GitHub automatically.
508508

509509
### Social Links
510510

511-
You can link your social media services you're using, including LinkedIn, X, Mastodon, ResearchGate, Facebook, Instagram, Reddit, Threads, YouTube, Udemy, Dribbble, Behance, Medium, dev, Stack Overflow, Skype, Telegram, personal website, phone and email.
511+
You can link your social media services you're using, including LinkedIn, X, Mastodon, ResearchGate, Facebook, Instagram, Reddit, Threads, YouTube, Udemy, Dribbble, Behance, Medium, dev, Stack Overflow, Discord, Telegram, personal website, phone and email.
512512

513513
```ts
514514
// gitprofile.config.ts
@@ -530,7 +530,7 @@ const CONFIG = {
530530
medium: '',
531531
dev: '',
532532
stackoverflow: '',
533-
skype: '',
533+
discord: '',
534534
telegram: '',
535535
website: '',
536536
phone: '',

gitprofile.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const CONFIG = {
7272
medium: 'arifszn',
7373
dev: 'arifszn',
7474
stackoverflow: '', // example: '1/jeff-atwood'
75-
skype: '',
75+
discord: '',
7676
telegram: '',
7777
website: 'https://www.arifszn.com',
7878
phone: '',

global.d.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -187,11 +187,6 @@ interface Social {
187187
*/
188188
website?: string;
189189

190-
/**
191-
* Skype username
192-
*/
193-
skype?: string;
194-
195190
/**
196191
* Telegram username
197192
*/

src/components/details-card/index.tsx

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import {
1414
FaLinkedin,
1515
FaMastodon,
1616
FaReddit,
17-
FaSkype,
1817
FaStackOverflow,
1918
FaTelegram,
2019
FaYoutube,
@@ -336,14 +335,6 @@ const DetailsCard = ({ profile, loading, social, github }: Props) => {
336335
}
337336
/>
338337
)}
339-
{social?.skype && (
340-
<ListItem
341-
icon={<FaSkype />}
342-
title="Skype"
343-
value={social.skype}
344-
link={`skype:${social.skype}?chat`}
345-
/>
346-
)}
347338
{social?.telegram && (
348339
<ListItem
349340
icon={<FaTelegram />}

src/interfaces/sanitized-config.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ export interface SanitizedSocial {
5959
dev?: string;
6060
stackoverflow?: string;
6161
website?: string;
62-
skype?: string;
6362
telegram?: string;
6463
phone?: string;
6564
email?: string;

src/utils/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ export const getSanitizedConfig = (
7878
website: config?.social?.website,
7979
phone: config?.social?.phone,
8080
email: config?.social?.email,
81-
skype: config?.social?.skype,
8281
telegram: config?.social?.telegram,
8382
researchGate: config?.social?.researchGate,
8483
discord: config?.social?.discord,

0 commit comments

Comments
 (0)