Skip to content

Commit

Permalink
Running lint --fix (#16615)
Browse files Browse the repository at this point in the history
Co-authored-by: Dr. Lint-a-lot <[email protected]>
  • Loading branch information
github-actions[bot] and Dr. Lint-a-lot authored Sep 22, 2023
1 parent 857d0fc commit 20118dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ type Props = {
};

const StyledDropdownMenu = styled.ul.attrs(() => ({
className: 'dropdown-menu', /* stylelint-disable-line property-no-unknown */
className: 'dropdown-menu' /* stylelint-disable-line property-no-unknown*/
}))<{ $show: boolean, $zIndex: number, $minWidth: number }>(({ $show, theme, $zIndex, $minWidth }) => css`
display: ${$show ? 'block' : 'none'};
color: ${theme.colors.variant.dark.default};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ type FieldElementProps = {
};

const FieldElement = styled.span.attrs({
className: 'field-element', /* stylelint-disable-line property-no-unknown */
className: 'field-element' /* stylelint-disable-line property-no-unknown*/
})<FieldElementProps>(({ $active, $disabled, theme }) => css`
color: ${$active ? theme.colors.variant.info : 'currentColor'};
opacity: ${$disabled ? '0.3' : '1'};
Expand Down

0 comments on commit 20118dd

Please sign in to comment.