Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolethoen committed Oct 3, 2024
1 parent e02c476 commit 266da9f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/dev/src/CustomCatalog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export const CustomCatalog: React.FC = () => {
<Content component="p" className="catalog-sub">
Instructional examples
</Content>
<Gallery hasGutter className="pfext-quick-start-catalog__gallery" >
<Gallery hasGutter className="pfext-quick-start-catalog__gallery">
{allQuickStarts
.filter((quickStart: QuickStart) => quickStart.metadata.instructional)
.map((quickStart: QuickStart, index: number) => {
Expand Down Expand Up @@ -172,7 +172,7 @@ export const CustomCatalog: React.FC = () => {
<Content component="p" className="catalog-sub">
Additional examples
</Content>
<Gallery hasGutter className="pfext-quick-start-catalog__gallery" >
<Gallery hasGutter className="pfext-quick-start-catalog__gallery">
{allQuickStarts
.filter((quickStart: QuickStart) => !quickStart.metadata.instructional)
.map((quickStart: QuickStart, index: number) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/module/src/catalog/QuickStartCatalog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const QuickStartCatalog: React.FC<QuickStartCatalogProps> = ({ quickStarts }) =>

return (
<div>
<Gallery hasGutter className="pfext-quick-start-catalog__gallery" >
<Gallery hasGutter className="pfext-quick-start-catalog__gallery">
{quickStarts.map((quickStart, index) => {
const {
metadata: { name: id },
Expand Down
1 change: 0 additions & 1 deletion packages/module/src/catalog/QuickStartTileHeader.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import * as React from 'react';
import { Button, Flex, Title } from '@patternfly/react-core';
import QuickStartMarkdownView from '../QuickStartMarkdownView';

interface QuickStartTileHeaderProps {
name: string;
Expand Down

0 comments on commit 266da9f

Please sign in to comment.