Review comments

This commit is contained in:
mrjvs 2023-12-28 00:00:14 +01:00
parent d73a9575bd
commit 7901d2c5d5
1 changed files with 1 additions and 1 deletions

View File

@ -95,6 +95,6 @@ export function conf(): RuntimeConfig {
.map((s) => s.trim()) .map((s) => s.trim())
.filter((s) => s.length > 0), .filter((s) => s.length > 0),
) )
.filter((v) => v.length > 0), // The format is <beforeA>:<afterA>,<beforeB>:<afterB> .filter((v) => v.length === 2), // The format is <beforeA>:<afterA>,<beforeB>:<afterB>
}; };
} }