File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
site/src/pages/WorkspacesPage Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ import { Link as RouterLink } from "react-router-dom"
15
15
import * as TypesGen from "../../api/typesGenerated"
16
16
import { AvatarData } from "../../components/AvatarData/AvatarData"
17
17
import { EmptyState } from "../../components/EmptyState/EmptyState"
18
- import { ErrorSummary } from "../../components/ErrorSummary/ErrorSummary"
19
18
import { Stack } from "../../components/Stack/Stack"
20
19
import { TableLoader } from "../../components/TableLoader/TableLoader"
21
20
import { getDisplayStatus } from "../../util/workspace"
@@ -34,13 +33,12 @@ export interface WorkspacesPageViewProps {
34
33
error ?: unknown
35
34
}
36
35
37
- export const WorkspacesPageView : FC < WorkspacesPageViewProps > = ( { loading, workspaces, error } ) => {
36
+ export const WorkspacesPageView : FC < WorkspacesPageViewProps > = ( { loading, workspaces } ) => {
38
37
useStyles ( )
39
38
const theme : Theme = useTheme ( )
40
39
41
40
return (
42
41
< Stack spacing = { 4 } >
43
- { error && < ErrorSummary error = { error } /> }
44
42
< Table >
45
43
< TableHead >
46
44
< TableRow >
You can’t perform that action at this time.
0 commit comments