File tree Expand file tree Collapse file tree 3 files changed +0
-4
lines changed
packages/app/src/app/overmind Expand file tree Collapse file tree 3 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -34,5 +34,4 @@ export const getTeamSidebarData: Query<
34
34
${ sidebarSyncedSandboxFragment }
35
35
${ sidebarTemplateFragment }
36
36
${ sidebarProjectFragment }
37
- ${ sandboxFragmentDashboard }
38
37
` ;
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ export const getSidebarData = async (
15
15
const result = await queries . getTeamSidebarData ( { id : teamId } ) ;
16
16
17
17
const syncedSandboxes = result . me ?. team ?. syncedSandboxes || null ;
18
- const sandboxes = result . me ?. team ?. sandboxes || [ ] ;
19
18
const templates = result . me ?. team ?. templates || null ;
20
19
const repositories =
21
20
result . me ?. team ?. projects ?. map ( p => ( {
@@ -30,7 +29,6 @@ export const getSidebarData = async (
30
29
state . sidebar [ teamId ] = {
31
30
hasSyncedSandboxes,
32
31
hasTemplates,
33
- sandboxes,
34
32
repositories,
35
33
} ;
36
34
} catch {
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ type SidebarState = {
5
5
hasSyncedSandboxes : boolean | null ;
6
6
hasTemplates : boolean | null ;
7
7
repositories : Array < RepoInfo > ;
8
- sandboxes : Array < Sandbox > ;
9
8
} ;
10
9
11
10
export type State = Record < string , SidebarState > ;
You can’t perform that action at this time.
0 commit comments