Skip to content

Commit

Permalink
chore: fix linting in IntegrationHowToSection
Browse files Browse the repository at this point in the history
  • Loading branch information
daveleek committed Jan 10, 2024
1 parent 85fec86 commit c5e1964
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ import { Typography, styled } from '@mui/material';
import { IntegrationIcon } from '../IntegrationList/IntegrationIcon/IntegrationIcon';
import { Markdown } from 'component/common/Markdown/Markdown';

const StyledHowDoesItWorkSection = styled(StyledRaisedSection)(({ theme }) => ({
fontSize: theme.fontSizes.smallBody,
gap: theme.spacing(1.5),
}));
const StyledHowDoesItWorkSection = styled(StyledRaisedSection)(
({ theme }) => ({
fontSize: theme.fontSizes.smallBody,
gap: theme.spacing(1.5),
}),
);

interface IIntegrationHowToSectionProps {
provider?: Pick<AddonTypeSchema, 'howTo' | 'name'>;
Expand Down

0 comments on commit c5e1964

Please sign in to comment.