Skip to content
New issue

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

axiosInstance doesn't inherit default headers from apisauce #324

Open
smitroshin opened this issue Mar 19, 2024 · 0 comments
Open

axiosInstance doesn't inherit default headers from apisauce #324

smitroshin opened this issue Mar 19, 2024 · 0 comments

Comments

@smitroshin
Copy link

Description

In some specific cases I need to do a request using axiosInstance.
And I'm expecting axiosInstance to have the same configuration as apisauce instance.
Unfortunately, headers from axiosInstance doesn't have the same default values specified in apisauce instance headers.

Issue

import { create } from "apisauce";

const apisauceInstance = create({
  headers: {
    "X-Custom-Prop": "customProp",
  },
});

console.log(apisauceInstance.headers["X-Custom-Prop"]);
// "customProp"

console.log(apisauceInstance.axiosInstance.defaults.headers.common["X-Custom-Prop"]);
// undefined

Example on CodeSandbox

Expecting

apisauceInstance.axiosInstance.defaults.headers.common to be the same as apisauceInstance.headers.

My workaround

apisauceInstance.axiosInstance.post("http://some-post-endpoint", undefined, {
  headers: {
    ...apisauceInstance.headers,
    "X-Another-Custom-Prop": "anotherCustomProp",
  },
});

Package version

[email protected]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant