Skip to content

Commit fe1c4d4

Browse files
committed
address lint issues
1 parent c695b21 commit fe1c4d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/app/components/CommentList.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class CommentList extends React.Component {
3333

3434
render() {
3535
const { $$comments } = this.props;
36-
const commentNodes = $$comments.reverse().map(($$comment, index) => {
36+
const commentNodes = $$comments.reverse().map($$comment => {
3737
// `key` is a React-specific concept and is not mandatory for the
3838
// purpose of this tutorial. if you're curious, see more here:
3939
// http://facebook.github.io/react/docs/multiple-components.html#dynamic-children

client/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var WebpackDevServer = require('webpack-dev-server');
55
var jade = require('jade');
66
var sleep = require('sleep');
77
var config = require('./webpack.client.hot.config');
8-
var uuid = require('node-uuid')
8+
var uuid = require('node-uuid');
99

1010
var comments = [
1111
{ author: 'Pete Hunt', text: 'Hey there!', id: uuid.v4() },

0 commit comments

Comments
 (0)