Skip to content

Commit

Permalink
comment out broken var references
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffbax committed Nov 18, 2024
1 parent 78df64d commit 8dad39d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
36 changes: 18 additions & 18 deletions .storybook/preview.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,24 @@ const preview = {
parameters: {
backgrounds: {
default: '--ux-white',
values: [
{
name: '--ux-white',
value: colors.UX_WHITE,
},
{
name: '--ux-cream',
value: colors.UX_CREAM,
},
{
name: '--ux-emerald-600',
value: colors.UX_EMERALD_600,
},
{
name: '--ux-neutral-800',
value: colors.UX_NEUTRAL_800,
}
],
// values: [
// {
// name: '--ux-white',
// value: colors.UX_WHITE,
// },
// {
// name: '--ux-cream',
// value: colors.UX_CREAM,
// },
// {
// name: '--ux-emerald-600',
// value: colors.UX_EMERALD_600,
// },
// {
// name: '--ux-neutral-800',
// value: colors.UX_NEUTRAL_800,
// }
// ],
},
options: {
storySort: {
Expand Down
4 changes: 2 additions & 2 deletions src/Styles/colors/inputs.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import palette from './palette';

Check failure on line 1 in src/Styles/colors/inputs.js

View workflow job for this annotation

GitHub Actions / js-lint

'palette' is defined but never used

export default {
inputBorderColor: palette.UX_GRAY_400,
inputDisabledBg: palette.UX_GRAY_300,
// inputBorderColor: palette.UX_GRAY_400,
// inputDisabledBg: palette.UX_GRAY_300,
selectOptionFocusedBg: '#C7DDEF',
};

0 comments on commit 8dad39d

Please sign in to comment.