Skip to content

Commit

Permalink
refactor: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
bryan-ash committed Jan 6, 2023
1 parent b21f138 commit c93eff6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/components/BlockPanel/BlockPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const defaultProps = {
open: true,
expandable: false,
hideOnToggle: false,
onToggle: () => { },
onToggle: () => {},
};
/**
* BlockPanel is an extension to Bootstrap Card, which allows for expand/collapse and standardized header.
Expand Down Expand Up @@ -144,8 +144,9 @@ const BlockPanel: FC<BlockPanelProps> = ({
{onEdit && (
<Button
color="link"
className={`${color === 'primary' || color === 'dark' ? 'text-white' : ''
} p-0 ms-2 me-1`}
className={`${
color === 'primary' || color === 'dark' ? 'text-white' : ''
} p-0 ms-2 me-1`}
onClick={onEdit}
>
Edit
Expand Down

0 comments on commit c93eff6

Please sign in to comment.