Skip to content

Commit

Permalink
chore: appease linter
Browse files Browse the repository at this point in the history
  • Loading branch information
mavarius committed Nov 6, 2023
1 parent adbe532 commit 72079a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/me/components/AnnouncementBlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ export const AnnouncementBlock: FC<OwnProps> = ({
event(`announcementBlock.${title}.clicked`)
}

const headerClasses = `announcement-block--panel-header${image && ' announcement-block--panel-header__image'}`
const headerClasses = `announcement-block--panel-header${
image && ' announcement-block--panel-header__image'
}`

return (
<FlexBox direction={FlexDirection.Row} className="announcement-block">
Expand Down
4 changes: 1 addition & 3 deletions src/me/components/CurrentAnnouncement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ export const CurrentAnnouncement: FC = () => {

const incomingAnnouncement = (
<AnnouncementBlock
image={
<img src={iiotWebinarBanner} />
}
image={<img src={iiotWebinarBanner} />}
body={
<p>
Discover through real-life use cases how companies use InfluxDB for
Expand Down

0 comments on commit 72079a7

Please sign in to comment.