Skip to content

Commit e3633a3

Browse files
committed
fix(codex): satisfy native hook relay lint
1 parent 3a31dad commit e3633a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extensions/codex/src/app-server/native-hook-relay.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ function sortJsonValue(value: JsonValue): JsonValue {
127127
return value.map(sortJsonValue);
128128
}
129129
const sorted: JsonObject = {};
130-
for (const key of Object.keys(value).sort()) {
130+
for (const key of Object.keys(value).toSorted()) {
131131
sorted[key] = sortJsonValue(value[key]);
132132
}
133133
return sorted;

0 commit comments

Comments
 (0)