chore(format): apply biome fixes

This commit is contained in:
Peter Steinberger
2026-01-08 22:22:17 +00:00
parent 1f215848be
commit ed80860c34
8 changed files with 37 additions and 15 deletions

View File

@@ -39,4 +39,3 @@ describe("resolveDiscordPrivilegedIntentsFromFlags", () => {
});
});
});

View File

@@ -150,8 +150,11 @@ export async function probeDiscord(
};
if (includeApplication) {
result.application =
(await fetchDiscordApplicationSummary(normalized, timeoutMs, fetcher)) ??
undefined;
(await fetchDiscordApplicationSummary(
normalized,
timeoutMs,
fetcher,
)) ?? undefined;
}
return { ...result, elapsedMs: Date.now() - started };
} catch (err) {