File tree Expand file tree Collapse file tree
polymath-issuer/src/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 ]
1111 },
1212 "engines" : {
13- "node" : " >=8.11.4 <= 10.17.0 " ,
14- "yarn" : " >=1.12.3 <=1.19.1 " ,
13+ "node" : " 8.x || 10.x " ,
14+ "yarn" : " 1.x " ,
1515 "npm" : " 6.11.3"
1616 },
1717 "version" : " 1.0.0-beta.0" ,
Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ type StateProps = {|
4343type DispatchProps = { |
4444 fetchToken : ( ticker : string ) => any ,
4545 fetchProviders : ( ticker : string ) => any ,
46- fetchLegacyToken : ( ticker : string ) => any ,
4746| } ;
4847
4948const mapStateToProps = ( state : RootState ) : StateProps => ( {
@@ -57,7 +56,6 @@ const mapStateToProps = (state: RootState): StateProps => ({
5756const mapDispatchToProps : DispatchProps = {
5857 fetchToken,
5958 fetchProviders,
60- fetchLegacyToken,
6159} ;
6260
6361type Props = { |
@@ -74,7 +72,6 @@ class Dashboard extends Component<Props> {
7472 componentDidMount ( ) {
7573 const ticker = this . props . match . params . id ;
7674
77- this . props . fetchLegacyToken ( ticker ) ;
7875 this . props . fetchToken ( ticker ) ;
7976 this . props . fetchProviders ( ticker ) ;
8077 }
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ exports[`renders without crashing 1`] = `
9292 class = " pui-footer-text"
9393 >
9494 ©
95- 2019
95+ 2020
9696
9797 Polymath
9898 </span >
You can’t perform that action at this time.
0 commit comments