Skip to content

Commit 271a487

Browse files
committed
fix: correct capitalization of Authorization header in DefaultRequestInterceptor
1 parent d0066f2 commit 271a487

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/interceptors/DefaultRequestInterceptor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export async function DefaultRequestInterceptor(config: InternalAxiosRequestConf
1212

1313
const token = await getUserToken()
1414
if (token) {
15-
config.headers.authorization = `Bearer ${token}`
15+
config.headers.Authorization = `Bearer ${token}`
1616
}
1717
}
1818

0 commit comments

Comments
 (0)