Fixing style issue caused by build changes

This commit is contained in:
Christopher Speller
2016-03-17 12:42:03 -04:00
parent d383ed2f8d
commit 128204b47a
2 changed files with 1 additions and 4 deletions

View File

@@ -54,7 +54,7 @@ export default class CodePreview extends React.Component {
}
handleReceivedCode(data) {
const parsed = syntaxHightlighting.formatCode(this.state.lang, data, this.props.filename)
const parsed = syntaxHightlighting.formatCode(this.state.lang, data, this.props.filename);
this.setState({code: parsed, loading: false, success: true});
}