Skip to content

Commit

Permalink
fix: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cgilbe27 committed Feb 5, 2024
1 parent 3827be2 commit 8ac4a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gql/utils/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const arg = <T>(

return typeof value === "string"
? `${name}: ${isString}${value}${isString}`
: objToGql(value as IterableDictionary<T>)
: `${name}: ${objToGql(value as IterableDictionary<T>)}`
}

export const objToGql = <T>(obj: IterableDictionary<T>): string | number => {
Expand Down

0 comments on commit 8ac4a9c

Please sign in to comment.