From 13bcdfd581dd577e601ad6951eef80592c937d4b Mon Sep 17 00:00:00 2001 From: Neil Gabbadon Date: Tue, 15 Dec 2015 18:53:22 -0500 Subject: [PATCH] Changed mui-themeable HOC to have same displayName as its wrapped component. --- src/mui-themeable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mui-themeable.js b/src/mui-themeable.js index 4d26fa842e76a6..eecd64b3436128 100644 --- a/src/mui-themeable.js +++ b/src/mui-themeable.js @@ -11,7 +11,7 @@ export default function muiThemeable(WrappedComponent) { return ; }; - MuiComponent.displayName = `mui(${getDisplayName(WrappedComponent)})`; + MuiComponent.displayName = getDisplayName(WrappedComponent); MuiComponent.contextTypes = { muiTheme: React.PropTypes.object, };