diff --git a/src/pages/Profile/components/FeedItem/components/TwitterHandle.jsx b/src/pages/Profile/components/FeedItem/components/TwitterHandle.jsx index c74cf00..8248fe7 100644 --- a/src/pages/Profile/components/FeedItem/components/TwitterHandle.jsx +++ b/src/pages/Profile/components/FeedItem/components/TwitterHandle.jsx @@ -1,4 +1,5 @@ import React from 'react'; +import { Link } from 'react-router-dom'; const TwitterHandle = ({ handle }) => { const navigateToProfile = () => { @@ -6,12 +7,9 @@ const TwitterHandle = ({ handle }) => { }; return ( - + @{handle ?? 'anonymous'} - + ); };