Skip to content

Commit caba45e

Browse files
VinciGit00claude
andcommitted
fix: biome formatting in env.ts ternary
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 13c22c4 commit caba45e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/lib/env.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ function resolve(): Env {
2929
return EnvSchema.parse({
3030
apiKey: process.env.SGAI_API_KEY || (config["api-key"] as string) || undefined,
3131
debug: process.env.JUST_SCRAPE_DEBUG === "1",
32-
timeoutS: process.env.JUST_SCRAPE_TIMEOUT_S ? Number(process.env.JUST_SCRAPE_TIMEOUT_S) : undefined,
32+
timeoutS: process.env.JUST_SCRAPE_TIMEOUT_S
33+
? Number(process.env.JUST_SCRAPE_TIMEOUT_S)
34+
: undefined,
3335
});
3436
}
3537

0 commit comments

Comments
 (0)