diff --git a/src/components/Dashboard/Welcome/Welcome.tsx b/src/components/Dashboard/Welcome/Welcome.tsx index 564762230..58aaab790 100644 --- a/src/components/Dashboard/Welcome/Welcome.tsx +++ b/src/components/Dashboard/Welcome/Welcome.tsx @@ -2,7 +2,6 @@ import React, { ReactElement } from 'react'; import { DateTime } from 'luxon'; import { useTranslation } from 'react-i18next'; import useGetAppSettings from 'src/hooks/useGetAppSettings'; -import illustration9 from '../../../images/drawkit/grape/drawkit-grape-pack-illustration-9.svg'; import PageHeading from '../../PageHeading'; interface Props { @@ -33,8 +32,8 @@ const Welcome = ({ firstName }: Props): ReactElement => { "Welcome back to {{appName}}. Here's what's been happening.", { appName }, )} - imgSrc={illustration9} - height={180} + image={false} + height={105} /> ); };