Skip to content

Commit

Permalink
fix: make loginData required (#759) (#760)
Browse files Browse the repository at this point in the history
  • Loading branch information
bc-marco authored Sep 25, 2023
1 parent 91ce18d commit c36ae2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/storefront/src/shared/service/bc/graphql/login.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const logoutLogin = () => `mutation Logout {
}
}`

const getB2bLogin = `mutation Login($loginData: UserLoginType) {
const getB2bLogin = `mutation Login($loginData: UserLoginType!) {
login(loginData: $loginData) {
result{
storefrontLoginToken
Expand Down

0 comments on commit c36ae2e

Please sign in to comment.