We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a31dad commit e3633a3Copy full SHA for e3633a3
1 file changed
extensions/codex/src/app-server/native-hook-relay.ts
@@ -127,7 +127,7 @@ function sortJsonValue(value: JsonValue): JsonValue {
127
return value.map(sortJsonValue);
128
}
129
const sorted: JsonObject = {};
130
- for (const key of Object.keys(value).sort()) {
+ for (const key of Object.keys(value).toSorted()) {
131
sorted[key] = sortJsonValue(value[key]);
132
133
return sorted;
0 commit comments