Skip to content

Commit

Permalink
Merge pull request #335 from NibiruChain/develop
Browse files Browse the repository at this point in the history
fix: fix nested object arrays
  • Loading branch information
cgilbe27 authored Mar 6, 2024
2 parents eea373f + 3bb03d8 commit a4dc553
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/gql/utils/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,7 @@ export const convertObjectToPropertiesString = <T>(
.map(
(item) =>
`${key} {
${Object.keys(item)
.map((k) => `${k}`)
.join("\n")}
${convertObjectToPropertiesString(item as IterableDictionary<T>)}
}`
)
.join("\n")
Expand Down

1 comment on commit a4dc553

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lines Statements Branches Functions
Coverage: 88%
90.22% (1265/1402) 79.79% (541/678) 78.22% (309/395)

Please sign in to comment.