Skip to content

Commit

Permalink
fix: GrpFader.tsx should not be a PurComponent when using shouldCompe…
Browse files Browse the repository at this point in the history
…nentUpdate
  • Loading branch information
olzzon committed Jun 12, 2019
1 parent 738895c commit 77ca0e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/GrpFader.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { PureComponent } from 'react';
import React, { Component } from 'react';
import { connect } from "react-redux";
//@ts-ignore
import * as ClassNames from 'classnames';
Expand All @@ -25,7 +25,7 @@ interface IGrpFaderProps {
faderIndex: number
}

class GrpFader extends PureComponent<IGrpFaderProps & IGrpFaderInjectProps & Store> {
class GrpFader extends Component<IGrpFaderProps & IGrpFaderInjectProps & Store> {
mixerProtocol: IMixerProtocol;
faderIndex: number;

Expand Down

0 comments on commit 77ca0e3

Please sign in to comment.