Minor fixes

This commit is contained in:
SleepWalker 2017-01-27 08:28:15 +02:00
parent ca7c0ed94c
commit bf1cfda59c
3 changed files with 4 additions and 2 deletions

View File

@ -67,6 +67,9 @@ class PanelTransition extends Component {
login: PropTypes.string
}).isRequired,
user: userShape.isRequired,
accounts: PropTypes.shape({
available: PropTypes.array
}),
setErrors: PropTypes.func.isRequired,
clearErrors: PropTypes.func.isRequired,
resolve: PropTypes.func.isRequired,

View File

@ -1,4 +1,4 @@
import React, { Component } from 'react';
import React from 'react';
import { FormattedMessage as Message } from 'react-intl';
import { Link } from 'react-router';

View File

@ -1,7 +1,6 @@
import React, { Component, PropTypes } from 'react';
import { FormattedMessage as Message } from 'react-intl';
import { Link } from 'react-router';
import Helmet from 'react-helmet';
import { Input, Button, Checkbox, Form, FormModel } from 'components/ui/form';