gothinkster / react-mobx-realworld-example-app

Exemplary real world application built with React + MobX
https://react-mobx.realworld.io/
MIT License
1.25k stars 266 forks source link

Articles.byAuthor functions incorrect signature #31

Open QingpingMeng opened 6 years ago

QingpingMeng commented 6 years ago

byAuthor: (author, page, query) => requests.get(/articles?author=${encode(author)}&${limit(5, page)}),

query is declared by not used.

articlesStore.js calls byAuthor with author, page, LIMIT, where LIMIT is not used at all.