Skip to content

Commit

Permalink
Merge pull request #334 from NibiruChain/develop
Browse files Browse the repository at this point in the history
fix: fix build error
  • Loading branch information
cgilbe27 authored Mar 6, 2024
2 parents c73a49f + 3604410 commit e397391
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/gql/mutation/marketing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ export type GQLMarketingMutationFields = DeepPartial<{

export const marketingMutationString = (
args: QueryMarketingMutationArgs,
excludeParentObject: boolean,
fields?: DeepPartial<GQLMarketingMutationFields>
) => {
const GQLMarketingMutationQuery: string[] = []
Expand Down Expand Up @@ -81,7 +80,6 @@ export const marketingMutationString = (

return `mutation {
marketing {
${GQLMarketingMutationQuery.join("\n")}
}
}`
Expand All @@ -93,4 +91,4 @@ export const marketingMutation = async (
headers: HeadersInit,
fields?: DeepPartial<GQLMarketingMutationFields>
): Promise<GqlOutMarketingMutation> =>
doGqlQuery(marketingMutationString(args, true, fields), endpt, headers)
doGqlQuery(marketingMutationString(args, fields), endpt, headers)

1 comment on commit e397391

@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.23% (1266/1403) 79.79% (541/678) 78.28% (310/396)

Please sign in to comment.