Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yenienserrano committed Feb 6, 2024
1 parent cff32a6 commit 489deb8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/core/public/chrome/ui/header/home_icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export const HomeIcon = ({ branding, logos }: Props) => {

const { url: markURL, type: markType } = logos.Mark;

let markIcon = markURL;
let testSubj = `${markType}Mark`;
// Marks look better at the large size
let markIconSize: IconSize = 'l';
Expand All @@ -39,8 +38,8 @@ export const HomeIcon = ({ branding, logos }: Props) => {
return (
<EuiIcon
data-test-subj={testSubj}
data-test-image-url={markIcon}
type={markIcon}
data-test-image-url={markURL}
type={markURL}
title={alt}
size={markIconSize}
className="logoImage"
Expand Down

0 comments on commit 489deb8

Please sign in to comment.