diff --git a/src/components/AuthorBio/__tests__/__snapshots__/AuthorBio.test.tsx.snap b/src/components/AuthorBio/__tests__/__snapshots__/AuthorBio.test.tsx.snap index a23c413c7..ad1836617 100644 --- a/src/components/AuthorBio/__tests__/__snapshots__/AuthorBio.test.tsx.snap +++ b/src/components/AuthorBio/__tests__/__snapshots__/AuthorBio.test.tsx.snap @@ -37,7 +37,7 @@ exports[`AuthorBio component > should render correctly 1`] = ` should render correctly 1`] = ` xmlns="http://www.w3.org/2000/svg" > diff --git a/src/components/BlogAuthor/__tests__/__snapshots__/BlogAuthor.test.tsx.snap b/src/components/BlogAuthor/__tests__/__snapshots__/BlogAuthor.test.tsx.snap index 5cec4a2be..5d7c004b0 100644 --- a/src/components/BlogAuthor/__tests__/__snapshots__/BlogAuthor.test.tsx.snap +++ b/src/components/BlogAuthor/__tests__/__snapshots__/BlogAuthor.test.tsx.snap @@ -53,7 +53,7 @@ exports[`BlogAuthor component > Twitter link - should render correctly 1`] = ` Twitter link - should render correctly 1`] = ` xmlns="http://www.w3.org/2000/svg" > diff --git a/src/components/BlogAuthor/index.tsx b/src/components/BlogAuthor/index.tsx index f5ee39820..a38fb7fb9 100644 --- a/src/components/BlogAuthor/index.tsx +++ b/src/components/BlogAuthor/index.tsx @@ -1,5 +1,6 @@ import React from 'react'; -import { FaGithub, FaTwitter, FaLinkedin } from 'react-icons/fa'; +import { FaGithub, FaLinkedin } from 'react-icons/fa'; +import { FaXTwitter } from 'react-icons/fa6'; import { Link } from 'gatsby'; import ProfilePic from '../ProfilePic'; @@ -20,7 +21,7 @@ export const TwitterLink = (props) => { } return ( - + ); }; diff --git a/src/components/Footer/__tests__/__snapshots__/Footer.test.tsx.snap b/src/components/Footer/__tests__/__snapshots__/Footer.test.tsx.snap index 404f8fa04..f10a699c8 100644 --- a/src/components/Footer/__tests__/__snapshots__/Footer.test.tsx.snap +++ b/src/components/Footer/__tests__/__snapshots__/Footer.test.tsx.snap @@ -353,7 +353,7 @@ exports[`Footer component > renders correctly 1`] = ` renders correctly 1`] = ` xmlns="http://www.w3.org/2000/svg" > diff --git a/src/components/Footer/index.tsx b/src/components/Footer/index.tsx index ccec6732f..53eb219b2 100644 --- a/src/components/Footer/index.tsx +++ b/src/components/Footer/index.tsx @@ -1,6 +1,7 @@ import { Link } from 'gatsby-plugin-react-i18next'; import React from 'react'; -import { FaTwitter, FaYoutube, FaGithub, FaSlack, FaLinkedin } from 'react-icons/fa'; +import { FaYoutube, FaGithub, FaSlack, FaLinkedin } from 'react-icons/fa'; +import { FaXTwitter } from 'react-icons/fa6'; import RandomContributor from '../RandomContributor'; import LanguageSelector from '../LanguageSelector'; import './Footer.scss'; @@ -69,7 +70,7 @@ const Footer = (): JSX.Element => {