We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0066f2 commit 271a487Copy full SHA for 271a487
1 file changed
src/lib/interceptors/DefaultRequestInterceptor.ts
@@ -12,7 +12,7 @@ export async function DefaultRequestInterceptor(config: InternalAxiosRequestConf
12
13
const token = await getUserToken()
14
if (token) {
15
- config.headers.authorization = `Bearer ${token}`
+ config.headers.Authorization = `Bearer ${token}`
16
}
17
18
0 commit comments