# HG changeset patch # User ymh # Date 1498128780 -7200 # Node ID cd27d9fc1c73b8fe03ae47a9e07c009d8a90d392 # Parent b4f9114b3a86ba8ac2843aec0ead7481acff9667 some linting diff -r b4f9114b3a86 -r cd27d9fc1c73 client/src/components/NoteInput.js --- a/client/src/components/NoteInput.js Thu Jun 22 12:51:11 2017 +0200 +++ b/client/src/components/NoteInput.js Thu Jun 22 12:53:00 2017 +0200 @@ -1,7 +1,7 @@ import React, { Component } from 'react'; import { connect } from 'react-redux'; import { bindActionCreators } from 'redux'; -import { Form, FormControl, Button } from 'react-bootstrap'; +import { Form, FormControl } from 'react-bootstrap'; import PropTypes from 'prop-types'; import SlateEditor from './SlateEditor'; diff -r b4f9114b3a86 -r cd27d9fc1c73 client/src/components/SessionSummary.js --- a/client/src/components/SessionSummary.js Thu Jun 22 12:51:11 2017 +0200 +++ b/client/src/components/SessionSummary.js Thu Jun 22 12:53:00 2017 +0200 @@ -1,6 +1,6 @@ import React, { Component } from 'react'; import { connect } from 'react-redux'; -import { Panel, ListGroup, ListGroupItem } from 'react-bootstrap'; +import { ListGroup, ListGroupItem } from 'react-bootstrap'; import _ from 'lodash'; import '../App.css'; import {formatTimestamp} from '../utils';