Skip to content

Commit 390dd6a

Browse files
committed
fmt
1 parent 84edc9b commit 390dd6a

File tree

1 file changed

+2
-1
lines changed
  • packages/auth-services/src/login-server/src

1 file changed

+2
-1
lines changed

packages/auth-services/src/login-server/src/app.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import path from 'node:path';
88
// TypeError: The "path" argument must be of type string or an instance of URL. Received undefined
99
// at fileURLToPath (node:internal/url:1606:11)
1010
// at Object.<anonymous> (/Users/js-sdk/dist/apps/lit-auth-server/main.cjs:490211:90)
11-
const resolvedDirname = typeof __dirname !== 'undefined' ? __dirname : process.cwd();
11+
const resolvedDirname =
12+
typeof __dirname !== 'undefined' ? __dirname : process.cwd();
1213

1314
type DiscordTokenResponse = {
1415
access_token?: string;

0 commit comments

Comments
 (0)