Skip to content

Commit 3d40e06

Browse files
authored
Merge pull request javivelasco#21 from raveclassic/themed_name_generation_fix
don't use spaces in Themed component display name generation
2 parents a392dde + 1bcecbe commit 3d40e06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/themr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default (componentName, localTheme, options = {}) => (ThemedComponent) =>
3030
}
3131

3232
class Themed extends Component {
33-
static displayName = `Themed ${ThemedComponent.name}`;
33+
static displayName = `Themed${ThemedComponent.name}`;
3434

3535
static contextTypes = {
3636
themr: PropTypes.object

0 commit comments

Comments
 (0)