From 790497cc99b4af14b3a57129dd5d8b1378018cb1 Mon Sep 17 00:00:00 2001 From: Caleb Alldrin Date: Wed, 30 Oct 2024 08:57:53 -0700 Subject: [PATCH] Remove image and make smaller --- src/components/Dashboard/Welcome/Welcome.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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} /> ); };