Skip to content
This repository has been archived by the owner on Dec 20, 2017. It is now read-only.

Commit

Permalink
Linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Hunter Pitelka committed Feb 6, 2017
1 parent 2fa1461 commit 29a1b42
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion client/src/components/Autocomplete.js
Expand Up @@ -5,7 +5,6 @@ import autobind from 'autobind-decorator'

import API from 'api'
import utils from 'utils'
import * as changeCase from 'change-case'

import './Autocomplete.css'

Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/Home.js
@@ -1,6 +1,6 @@
import React, {PropTypes} from 'react'
import Page from 'components/Page'
import {Grid, Row, Col, FormControl, FormGroup, ControlLabel} from 'react-bootstrap'
import {Grid, Row, FormControl, FormGroup, ControlLabel} from 'react-bootstrap'
import SavedSearchTable from 'components/SavedSearchTable'
import {Link} from 'react-router'
import moment from 'moment'
Expand Down
1 change: 0 additions & 1 deletion client/src/pages/positions/Form.js
Expand Up @@ -177,7 +177,6 @@ export default class PositionForm extends Component {
@autobind
onSubmit(event) {
let {position, edit} = this.props
let {organization} = position

if (position.type !== "PRINCIPAL") {
position.type = position.permissions || "ADVISOR"
Expand Down
1 change: 0 additions & 1 deletion client/src/pages/positions/Show.js
Expand Up @@ -58,7 +58,6 @@ export default class PositionShow extends Page {
(currentUser.isAdmin()) ||
//Super users can edit positions within their own organization
(position.organization && position.organization.id && currentUser.isSuperUserForOrg(position.organization)))
console.log(position)
return (
<div>
<Breadcrumbs items={[[position.name || 'Position', Position.pathFor(position)]]} />
Expand Down

0 comments on commit 29a1b42

Please sign in to comment.