chore: format small utility files

This commit is contained in:
2026-05-28 11:26:51 +02:00
committed by Milas Holsting
parent fdfe082e45
commit a92d2b46c8
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ export const parseClassList = (value: string | null): string[] => {
}
return value
.split(' ')
.split(" ")
.map((entry: string): string => entry.trim())
.filter((entry: string): boolean => entry.length > 0);
};