Skip to content

Commit

Permalink
fix header data bug (#633)
Browse files Browse the repository at this point in the history
  • Loading branch information
levenecav authored and isaldin committed Oct 11, 2018
1 parent a7f5269 commit 10f7f49
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/routes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,11 @@ const routes = (
query routes_Checkout_Query {
me {
...Checkout_me
...UserData_me
}
cart {
...Checkout_cart
...UserDataTotalLocalFragment
}
}
`}
Expand Down Expand Up @@ -283,6 +285,10 @@ const routes = (
query routes_Manage_Query {
me {
id
...UserData_me
}
cart {
...UserDataTotalLocalFragment
}
}
`}
Expand Down Expand Up @@ -312,6 +318,10 @@ const routes = (
storeId
}
...Wizard_me
...UserData_me
}
cart {
...UserDataTotalLocalFragment
}
}
`}
Expand Down Expand Up @@ -602,6 +612,10 @@ const routes = (
query routes_ProfileItem_Query {
me {
...Profile_me
...UserData_me
}
cart {
...UserDataTotalLocalFragment
}
}
`}
Expand Down

0 comments on commit 10f7f49

Please sign in to comment.