Skip to content

Commit 2ecd196

Browse files
committed
Lint
1 parent ebac15d commit 2ecd196

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

apps/array/src/main/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ type TaskController = unknown;
3535

3636
import { registerGitIpc } from "./services/git.js";
3737
import "./services/index.js";
38-
import { ExternalAppsService } from "./services/external-apps/service.js";
38+
import type { DeepLinkService } from "./services/deep-link/service.js";
39+
import type { ExternalAppsService } from "./services/external-apps/service.js";
40+
import type { OAuthService } from "./services/oauth/service.js";
3941
import {
4042
initializePostHog,
4143
shutdownPostHog,
4244
trackAppEvent,
4345
} from "./services/posthog-analytics.js";
4446
import type { UpdatesService } from "./services/updates/service.js";
4547
import { registerWorkspaceIpc } from "./services/workspace/index.js";
46-
import { DeepLinkService } from "./services/deep-link/service.js";
47-
import { OAuthService } from "./services/oauth/service.js";
4848

4949
const __filename = fileURLToPath(import.meta.url);
5050
const __dirname = path.dirname(__filename);

apps/array/src/main/services/oauth/service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
} from "../../../constants/oauth.js";
1111
import { MAIN_TOKENS } from "../../di/tokens.js";
1212
import { logger } from "../../lib/logger.js";
13-
import { DeepLinkService } from "../deep-link/service.js";
13+
import type { DeepLinkService } from "../deep-link/service.js";
1414
import type {
1515
CancelFlowOutput,
1616
CloudRegion,

apps/array/src/main/services/types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33
* This file is auto-generated by vite-plugin-auto-services.ts
44
*/
55

6-

0 commit comments

Comments
 (0)