Skip to content

Commit

Permalink
style: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
northword committed Dec 18, 2024
1 parent 9f418f3 commit 4abaa44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/tester.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Context } from "../types/index.js";
import http from "node:http";
import { join, resolve } from "node:path";
import process, { cwd } from "node:process";
import process from "node:process";
import { build } from "esbuild";
import { copy, emptyDir, outputFile, outputJSON, pathExists } from "fs-extra/esm";
import { isCI } from "std-env";
Expand Down
2 changes: 1 addition & 1 deletion src/utils/zotero/remote-zotero.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class RemoteFirefox {
return this.client;
}
catch (error: any) {
logger.fail('Failed to connecte to RDP client, retry...')
logger.fail("Failed to connecte to RDP client, retry...");
if (isErrorWithCode("ECONNREFUSED", error)) {
await new Promise(resolve => setTimeout(resolve, RETRY_INTERVAL));
lastError = error;
Expand Down

0 comments on commit 4abaa44

Please sign in to comment.