Remove obsolete property from state

This commit is contained in:
Ramon Wenger 2020-06-02 16:34:28 +02:00
parent 5db13e9124
commit 283ee0db9b
3 changed files with 0 additions and 4 deletions

View File

@ -17,7 +17,6 @@ const writeLocalCache = cache => {
}, },
sidebar: { sidebar: {
__typename: 'Sidebar', __typename: 'Sidebar',
open: false,
profile: false, profile: false,
navigation: false navigation: false
}, },

View File

@ -1,6 +1,5 @@
query Sidebar { query Sidebar {
sidebar @client { sidebar @client {
open
profile profile
navigation navigation
} }

View File

@ -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
} }