style: sync pre-commit formatting fallout

This commit is contained in:
Eyejoker
2026-03-28 05:41:16 +09:00
parent ba9f6871b6
commit e1fdc47552
17 changed files with 261 additions and 175 deletions

View File

@@ -99,8 +99,5 @@ export function findChannel(
* - Collapse consecutive whitespace/newlines into single space
*/
export function normalizeMessageForDedupe(text: string): string {
return text
.trim()
.replace(/\s+/g, ' ')
.toLowerCase();
return text.trim().replace(/\s+/g, ' ').toLowerCase();
}