Skip to content

Commit

Permalink
Fixes in response to Daniel's comments
Browse files Browse the repository at this point in the history
  • Loading branch information
NateWr committed May 22, 2018
1 parent 89486f3 commit ca293da
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { Component } from 'react';
import Balance from './components/Balance';
import MakePayment from './components/MakePayment';
import Payments from './containers/Payments';
import Payments from './components/Payments';
import currencies from './data/currencies';
import './App.css';

Expand Down
2 changes: 1 addition & 1 deletion src/components/MakePayment.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Payment extends Component {
}

selectCurrency = (event) => {
let currency = event.target.value;
const currency = event.target.value;
this.setState({
selectedCurrency: currency
});
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit ca293da

Please sign in to comment.