chore: fix lint formatting

This commit is contained in:
Peter Steinberger
2026-01-03 14:57:49 +00:00
parent 77c76ca52f
commit 1a00175eb7
9 changed files with 120 additions and 108 deletions

View File

@@ -782,10 +782,7 @@ export async function getReplyFromConfig(
const typingIntervalSeconds =
typeof configuredTypingSeconds === "number" ? configuredTypingSeconds : 6;
const typingIntervalMs = typingIntervalSeconds * 1000;
const typingTtlMs = Math.min(
Math.max(15_000, typingIntervalMs * 5),
60_000,
);
const typingTtlMs = Math.min(Math.max(15_000, typingIntervalMs * 5), 60_000);
const cleanupTyping = () => {
if (typingTtlTimer) {
clearTimeout(typingTtlTimer);