fix(release): satisfy preflight lint · openclaw/openclaw@f1708f8
steipete
·
2026-05-16
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -122,7 +122,7 @@ function getRecord(value: unknown): Record<string, unknown> | null {
|
122 | 122 | |
123 | 123 | function formatProviderCounts(counts: Map<string, number>): string { |
124 | 124 | return [...counts.entries()] |
125 | | -.sort(([left], [right]) => left.localeCompare(right)) |
| 125 | +.toSorted(([left], [right]) => left.localeCompare(right)) |
126 | 126 | .map(([provider, count]) => `${provider}=${count}`) |
127 | 127 | .join(", "); |
128 | 128 | } |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。