Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MPDX-7900 Remove Header image and make smaller #1164

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/components/Dashboard/Welcome/Welcome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was going to suggest deleting this image from the repo too, but there are some illustrations that aren't being used, so it's probably fine.

import PageHeading from '../../PageHeading';

interface Props {
Expand Down Expand Up @@ -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}
/>
);
};
Expand Down
Loading