We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I've got a very weird issue. I have an action that works:
export function fetchMetadades() { const url = `${API_ROOT_URL}/${API_METADADES}`; const request = axios.get(url); return { type: FETCH_METADADES, payload: request }; }
But if I add another parameter, for instance:
export function fetchMetadades() { const url = `${API_ROOT_URL}/${API_METADADES}`; const request = axios.get(url); return { type: FETCH_METADADES, payload: request, newParam: "withANewValue" }; }
It doesn't work 😨 What I'm doing wrong?
The text was updated successfully, but these errors were encountered:
Sorry. I applied the the solution of #28 and it worked perfectly.
Sorry, something went wrong.
No branches or pull requests
Hello,
I've got a very weird issue. I have an action that works:
But if I add another parameter, for instance:
It doesn't work 😨 What I'm doing wrong?
The text was updated successfully, but these errors were encountered: