Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
SupaJoon committed Mar 1, 2024
1 parent d38e6cd commit cba3dd8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/utils/object/deleteNestedKey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export function deleteNestedKey<T extends object>(
typeof currentObject[key] === "object" &&
currentObject[key] !== null
) {
// eslint-disable-next-line no-param-reassign
deleteKey(currentObject[key]);
}
});
Expand Down

0 comments on commit cba3dd8

Please sign in to comment.