You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Anyone encountered this problem while trying to connect redux, axios and redux-axios-middleware in ReactNative app? For some reason I keep getting this error, it seems like something is wrong with function loginWebservice(username, password) { return { type: LOGIN, payload: { request: { url: '/auth/login', method: 'POST', data: { 'name': username, 'password': password } } } } }
I configured axios client and I connected it with redux store.
Also error another error I received is undentified is not an object (evaluating 'setupClient.client.request')
The text was updated successfully, but these errors were encountered:
I had a similar problem in a multi client configuration one day because my import was wrong :
// OK :import{multiClientMiddleware}from'redux-axios-middleware';// This won't work because this imports the default module, which behaves slightly differently importmultiClientMiddlewarefrom'redux-axios-middleware';
I had a similar problem in a multi client configuration one day because my import was wrong :
// OK :import{multiClientMiddleware}from'redux-axios-middleware';// This won't work because this imports the default module, which behaves slightly differently importmultiClientMiddlewarefrom'redux-axios-middleware';
Anyone encountered this problem while trying to connect redux, axios and redux-axios-middleware in ReactNative app? For some reason I keep getting this error, it seems like something is wrong with
function loginWebservice(username, password) { return { type: LOGIN, payload: { request: { url: '/auth/login', method: 'POST', data: { 'name': username, 'password': password } } } } }
I configured axios client and I connected it with redux store.
Also error another error I received is
undentified is not an object (evaluating 'setupClient.client.request')
The text was updated successfully, but these errors were encountered: