Skip to content

Commit

Permalink
Merge pull request #1827 from xodio/fix-library-publishing
Browse files Browse the repository at this point in the history
Fix library publishing
  • Loading branch information
evgenykochetkov authored Jul 19, 2019
2 parents 66e4a73 + 8467aff commit 35ce540
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/xod-client/src/user/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@ export const updateCompileLimit = (startup = false) => dispatch => {
* a keycloak grant from server
*/
export const fetchGrant = (startup = false) => dispatch =>
dispatch(refreshGrant()).then(() => dispatch(updateCompileLimit(startup)));
dispatch(refreshGrant()).then(
R.tap(() => dispatch(updateCompileLimit(startup)))
);

export const login = (username, password) => dispatch => {
const form = new URLSearchParams();
Expand Down

0 comments on commit 35ce540

Please sign in to comment.