James Rothpearl
James Rothpearl
Noticed this too now @iamisti , injecting per demo examples We solved this by including 'ngSanitize' and 'ngMdIcons' as app dependencies before 'mdDataTable'
@jeffbski I can reproduce this same issue FYI. One of our logic methods was failing and never actually executing done (even though it should be going to next .then(done) )
**logic.js** file ``` createLogic({ type: $requestPublicTokenData, process({ getState, action }, dispatch, done) { graphQueryPublic(publicTokenDataQuery, { user: action.user }).then(res => { dispatch(receivePublicTokenData(res.publicAddresses, res.publicKnownContracts)) }).then(() => { console.log('y u no call done?!?')...