Skip to content

Commit

Permalink
fix(): fix error preventing compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
Vargentum committed Sep 13, 2016
1 parent b218276 commit 1aa4f7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ export default class BreakpointMonitor extends Component {
}
render() {
const {bp, overwriteDefaultBp, throttleBy, style, ...attrs} = this.props
const style = Object.assign({}, BreakpointMonitor.defaultStyles, this.props.style)
const fullStyle = Object.assign({}, BreakpointMonitor.defaultStyles, style)
return (
<div {...attrs} style={style}>
<div {...attrs} style={fullStyle}>
{this.state.currentBpLabel}
</div>
)
Expand Down

0 comments on commit 1aa4f7e

Please sign in to comment.