diff --git a/src/components/links/internal-link.tsx b/src/components/links/internal-link.tsx index 9ab757031..08520df54 100644 --- a/src/components/links/internal-link.tsx +++ b/src/components/links/internal-link.tsx @@ -1,11 +1,11 @@ import React, { Fragment } from 'react' -import { LinkContainer } from 'react-router-bootstrap' +import { Link } from 'react-router-dom' import { ForkAwesomeIcon } from '../../fork-awesome/fork-awesome-icon' import { LinkWithTextProps } from './types' export const InternalLink: React.FC = ({ href, text, icon, className = 'text-light' }) => { return ( - { @@ -17,6 +17,6 @@ export const InternalLink: React.FC = ({ href, text, icon, cl } {text} - + ) }