Browse Source

remove console

pull/11708/head
afc163 6 years ago
parent
commit
4d7f1b191f
  1. 1
      components/_util/wave.tsx

1
components/_util/wave.tsx

@ -11,7 +11,6 @@ export default class Wave extends React.Component<{insertExtraNode?: boolean}> {
isNotGrey(color: string) {
const match = (color || '').match(/rgba?\((\d*), (\d*), (\d*)(, [\.\d]*)?\)/);
console.log(match);
if (match && match[1] && match[2] && match[3]) {
return !(match[1] === match[2] && match[2] === match[3]);
}

Loading…
Cancel
Save