diff --git a/.eslintrc.js b/.eslintrc.js index 29c784f43a5..4b9d86e4be3 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -107,10 +107,6 @@ module.exports = { '**/fixtures/**.@(js|ts|tsx)', 'scripts/*.@(js|ts|tsx)', ], - // env: { - // jest: true, - // }, - // extends: ['plugin:jest/recommended'], rules: { '@typescript-eslint/consistent-type-assertions': 'off', '@typescript-eslint/no-var-requires': 'off', @@ -121,7 +117,6 @@ module.exports = { }, { files: ['**/__tests__/**test.tsx'], - // env: { jest: true }, extends: ['plugin:testing-library/react'], rules: { 'testing-library/no-manual-cleanup': 'off', diff --git a/app/src/atoms/Chip/index.tsx b/app/src/atoms/Chip/index.tsx index a8cc2008b49..5a6f16a0418 100644 --- a/app/src/atoms/Chip/index.tsx +++ b/app/src/atoms/Chip/index.tsx @@ -81,7 +81,6 @@ export function Chip({ background === false && type !== 'basic' ? COLORS.transparent : CHIP_PROPS_BY_TYPE[type].backgroundColor - console.log('backgroundColor', backgroundColor) const icon = iconName ?? CHIP_PROPS_BY_TYPE[type].iconName ?? 'ot-alert' return (