Skip to content

Commit b51ee62

Browse files
committed
style: fix code style to pass CI checks
1 parent c186f53 commit b51ee62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/lib/hooks/useConnection.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,8 @@ export function useConnection({
304304
bearerToken || (await serverAuthProvider.tokens())?.access_token;
305305
if (token) {
306306
const authHeaderName = headerName || "Authorization";
307-
308-
// Add custom header name as a special request header to let the server know which header to pass through
307+
308+
// Add custom header name as a special request header to let the server know which header to pass through
309309
if (authHeaderName.toLowerCase() !== "authorization") {
310310
headers[authHeaderName] = token;
311311
headers["x-custom-auth-header"] = authHeaderName;

0 commit comments

Comments
 (0)