Skip to content

Commit

Permalink
chore: eslint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSisb committed Apr 5, 2023
1 parent 22a447c commit a56d662
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/paste-core/components/tabs/src/Tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const getTabBoxStyles = (orientation: Orientation, variant: Variants): BoxStyleP
paddingY: 'space30',
paddingX: 'space50',
textAlign: 'center',
marginBottom: '-1px',
bottom: '-1px',
/* Selected State */
_selected: {
borderColor: isInverse ? 'colorBorderInverseStrongest' : 'colorBorderWeak',
Expand Down Expand Up @@ -107,7 +107,7 @@ const getTabBoxStyles = (orientation: Orientation, variant: Variants): BoxStyleP
borderBottomColor: isInverse ? 'colorBorderInverseStrongest' : 'colorBorderPrimary',
},
_disabled_focus: {

Check failure on line 109 in packages/paste-core/components/tabs/src/Tab.tsx

View workflow job for this annotation

GitHub Actions / Lint repository

Identifier '_disabled_focus' is not in camel case
borderColor: isInverse ? 'colorBorderInverseWeak' : 'colorBorderWeak',
borderColor: isInverse ? 'colorBorderInverseWeaker' : 'colorBorderWeak',
boxShadow: 'none',
},
};
Expand Down

0 comments on commit a56d662

Please sign in to comment.