Skip to content

Commit be72b99

Browse files
delete comments
1 parent a76f339 commit be72b99

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/clients/dish/src/mapConfigurations/searchConfigParams.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,10 @@ const sortFeaturesByProperties = (
2929
let comparison = 0
3030

3131
if (numericKeys.includes(key)) {
32-
// Numerische Sortierung
3332
const numA = parseFloat(String(valueA)) || 0
3433
const numB = parseFloat(String(valueB)) || 0
3534
comparison = numA - numB
3635
} else {
37-
// Alphabetische Sortierung
3836
comparison = String(valueA).localeCompare(String(valueB))
3937
}
4038

0 commit comments

Comments
 (0)