Skip to content

Commit

Permalink
🐜 🎨 forgot a ;
Browse files Browse the repository at this point in the history
  • Loading branch information
astoilkov committed May 10, 2024
1 parent 24760bc commit 5bbde69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/inspect/inspectors/inspectObject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export function inspectObjectMultiLine(
context: ConsoleInspectContext,
): ConsoleInspection {
const spans: (ConsoleText | ConsoleObject)[] = [];
const sortedKeys = keys(object, context.keys)
const sortedKeys = keys(object, context.keys);
const maxLength = maxKeyLength(object);

for (let i = 0; i < sortedKeys.length; i++) {
Expand Down

0 comments on commit 5bbde69

Please sign in to comment.