style: apply oxfmt

This commit is contained in:
Peter Steinberger
2026-01-18 02:19:35 +00:00
parent b659db0a5b
commit 0c93b9b7bb
21 changed files with 87 additions and 89 deletions

View File

@@ -20,9 +20,7 @@ export function normalizeChannelSlug(value: string): string {
.replace(/^-+|-+$/g, "");
}
export function buildChannelKeyCandidates(
...keys: Array<string | undefined | null>
): string[] {
export function buildChannelKeyCandidates(...keys: Array<string | undefined | null>): string[] {
const seen = new Set<string>();
const candidates: string[] = [];
for (const key of keys) {