diff --git a/app/components/GlobalError/GlobalError.js b/app/components/GlobalError/GlobalError.js index 6fffab17..75f09a1e 100644 --- a/app/components/GlobalError/GlobalError.js +++ b/app/components/GlobalError/GlobalError.js @@ -15,7 +15,6 @@ const GlobalError = ({ error, clearError }) => ( ) - GlobalError.propTypes = { error: PropTypes.string, clearError: PropTypes.func.isRequired diff --git a/app/components/GlobalError/index.js b/app/components/GlobalError/index.js index 41eb98ac..66303b76 100644 --- a/app/components/GlobalError/index.js +++ b/app/components/GlobalError/index.js @@ -1,3 +1,3 @@ import GlobalError from './GlobalError' -export default GlobalError \ No newline at end of file +export default GlobalError diff --git a/app/components/Nav/Nav.js b/app/components/Nav/Nav.js index 527036ef..3fe72ff0 100644 --- a/app/components/Nav/Nav.js +++ b/app/components/Nav/Nav.js @@ -1,29 +1,45 @@ +import path from 'path' import React from 'react' import PropTypes from 'prop-types' import { NavLink } from 'react-router-dom' -import ReactSVG from 'react-svg' -import { MdAccountBalanceWallet } from 'react-icons/lib/md' -import { FaClockO } from 'react-icons/lib/fa' +import Isvg from 'react-inlinesvg' import styles from './Nav.scss' const Nav = ({ openPayForm, openRequestForm }) => (