Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Commit

Permalink
Removing pure components from gates (#1004)
Browse files Browse the repository at this point in the history
  • Loading branch information
jespino authored and GoldUniform committed Apr 4, 2018
1 parent dc524eb commit 2a7d87f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import PropTypes from 'prop-types';
import React from 'react';

export default class ChannelPermissionGate extends React.PureComponent {
export default class ChannelPermissionGate extends React.Component {
static defaultProps = {
invert: false,
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import PropTypes from 'prop-types';
import React from 'react';

export default class SystemPermissionGate extends React.PureComponent {
export default class SystemPermissionGate extends React.Component {
static defaultProps = {
invert: false,
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import PropTypes from 'prop-types';
import React from 'react';

export default class TeamPermissionGate extends React.PureComponent {
export default class TeamPermissionGate extends React.Component {
static defaultProps = {
invert: false,
}
Expand Down

0 comments on commit 2a7d87f

Please sign in to comment.