Skip to content

Commit

Permalink
fix(ConnectViewport): display name should be explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
garthenweb committed Sep 9, 2018
1 parent c826ebd commit ef0e8b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ConnectViewport.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function connect(options: IOptions = {}) {
WrappedComponent: React.ComponentType<P & IWrapperProps>,
): React.ComponentClass<P> => {
return class ConnectViewport extends React.Component<P, {}> {
static displayName: string = wrapDisplayName(WrappedComponent, 'connect');
static displayName: string = wrapDisplayName(WrappedComponent, 'connectViewport');

render() {
return (
Expand Down

0 comments on commit ef0e8b4

Please sign in to comment.