Skip to content

Commit

Permalink
chore: change margins to correct propType
Browse files Browse the repository at this point in the history
  • Loading branch information
eirikhaugstulen committed Dec 6, 2023
1 parent 4c34067 commit 664b4df
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ export const TemplateSelectorChip = (props: Props) => {
onClick={selectTemplateHandler}
>
<Chip
marginTop="0"
marginBottom="0"
marginLeft="0"
marginRight="0"
marginTop={0}
marginBottom={0}
marginLeft={0}
marginRight={0}
dataTest="workinglist-template-selector-chip"
>
{text}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ export const TemplateSelectorChip = (props: Props) => {
onClick={selectTemplateHandler}
>
<Chip
marginTop="0"
marginBottom="0"
marginLeft="0"
marginRight="0"
marginTop={0}
marginBottom={0}
marginLeft={0}
marginRight={0}
dataTest="workinglist-template-selector-chip"
selected={id === currentTemplateId}
>
Expand Down

0 comments on commit 664b4df

Please sign in to comment.