fix: apply biome formatting

This commit is contained in:
Peter Steinberger
2025-12-26 14:38:37 +01:00
parent e33c09f8d4
commit ce91aba4de
6 changed files with 26 additions and 16 deletions

View File

@@ -38,7 +38,11 @@ export async function probeDiscord(
elapsedMs: 0,
};
if (!normalized) {
return { ...result, error: "missing token", elapsedMs: Date.now() - started };
return {
...result,
error: "missing token",
elapsedMs: Date.now() - started,
};
}
try {
const res = await fetchWithTimeout(
@@ -70,4 +74,3 @@ export async function probeDiscord(
};
}
}