Skip to content

Commit aa0e6b0

Browse files
committed
Rename oauthInterceptor to axiosInterceptor
1 parent eb9519c commit aa0e6b0

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { ServiceContainer } from "./core/container";
1313
import { type SecretsManager } from "./core/secretsManager";
1414
import { DeploymentManager } from "./deployment/deploymentManager";
1515
import { CertificateError, getErrorDetail } from "./error";
16-
import { OAuthInterceptor } from "./oauth/oauthInterceptor";
16+
import { OAuthInterceptor } from "./oauth/axiosInterceptor";
1717
import { OAuthSessionManager } from "./oauth/sessionManager";
1818
import { Remote } from "./remote/remote";
1919
import { getRemoteSshExtension } from "./remote/sshExtension";

src/remote/remote.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import { getHeaderCommand } from "../headers";
3434
import { Inbox } from "../inbox";
3535
import { type Logger } from "../logging/logger";
3636
import { type LoginCoordinator } from "../login/loginCoordinator";
37-
import { OAuthInterceptor } from "../oauth/oauthInterceptor";
37+
import { OAuthInterceptor } from "../oauth/axiosInterceptor";
3838
import { OAuthSessionManager } from "../oauth/sessionManager";
3939
import {
4040
AuthorityPrefix,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import axios, { type AxiosInstance } from "axios";
22
import { describe, expect, it, vi } from "vitest";
33

44
import { SecretsManager } from "@/core/secretsManager";
5-
import { OAuthInterceptor } from "@/oauth/oauthInterceptor";
5+
import { OAuthInterceptor } from "@/oauth/axiosInterceptor";
66

77
import {
88
createAxiosError,

0 commit comments

Comments
 (0)