Skip to content

Commit

Permalink
fix: registering account issue
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlLiu2023 committed Aug 15, 2023
1 parent 00b6e35 commit c3fac6a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions apps/storefront/src/shared/service/b2b/graphql/register.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,7 @@ const createCompanyUser = (data: any) => `mutation{
? `extraFields: ${convertArrayToGraphql(data.extraFields)}`
: ''
}
${
data?.fileList
? `extraFields: ${convertArrayToGraphql(data.fileList)}`
: ''
}
${data?.fileList ? `fileList: ${convertArrayToGraphql(data.fileList)}` : ''}
channelId: ${data.channelId || 1}
${
data?.addressExtraFields
Expand Down

0 comments on commit c3fac6a

Please sign in to comment.