Remove obsolete property from state
This commit is contained in:
parent
5db13e9124
commit
283ee0db9b
|
|
@ -17,7 +17,6 @@ const writeLocalCache = cache => {
|
||||||
},
|
},
|
||||||
sidebar: {
|
sidebar: {
|
||||||
__typename: 'Sidebar',
|
__typename: 'Sidebar',
|
||||||
open: false,
|
|
||||||
profile: false,
|
profile: false,
|
||||||
navigation: false
|
navigation: false
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
query Sidebar {
|
query Sidebar {
|
||||||
sidebar @client {
|
sidebar @client {
|
||||||
open
|
|
||||||
profile
|
profile
|
||||||
navigation
|
navigation
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -14,9 +14,7 @@ export const typeDefs = gql`
|
||||||
email: String!
|
email: String!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
type Sidebar {
|
type Sidebar {
|
||||||
open: Boolean!
|
|
||||||
navigation: Boolean
|
navigation: Boolean
|
||||||
profile: Boolean
|
profile: Boolean
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue