diff --git a/client/src/components/profile/components/portfolio.tsx b/client/src/components/profile/components/portfolio.tsx index dda69b60530..361bf56d1c6 100644 --- a/client/src/components/profile/components/portfolio.tsx +++ b/client/src/components/profile/components/portfolio.tsx @@ -2,6 +2,7 @@ import React from 'react'; import { useTranslation } from 'react-i18next'; import type { Portfolio as PortfolioData } from '../../../redux/prop-types'; +import { FullWidthRow } from '../../helpers'; import './portfolio.css'; @@ -15,7 +16,7 @@ function Portfolio({ portfolio = [] }: PortfolioProps): JSX.Element | null { return null; } return ( - <> +

{t('profile.portfolio')}

{portfolio.map(({ title, url, image, description, id }) => (
@@ -31,7 +32,7 @@ function Portfolio({ portfolio = [] }: PortfolioProps): JSX.Element | null {
))}
- +
); }