File tree 3 files changed +0
-19
lines changed
components/WorkspaceActions
pages/WorkspaceSettingsPage
3 files changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ import { UsersPage } from "./pages/UsersPage/UsersPage"
17
17
import { WorkspaceBuildPage } from "./pages/WorkspaceBuildPage/WorkspaceBuildPage"
18
18
import { WorkspacePage } from "./pages/WorkspacePage/WorkspacePage"
19
19
import { WorkspaceSchedulePage } from "./pages/WorkspaceSchedulePage/WorkspaceSchedulePage"
20
- import { WorkspaceSettingsPage } from "./pages/WorkspaceSettingsPage/WorkspaceSettingsPage"
21
20
22
21
const TerminalPage = React . lazy ( ( ) => import ( "./pages/TerminalPage/TerminalPage" ) )
23
22
const WorkspacesPage = React . lazy ( ( ) => import ( "./pages/WorkspacesPage/WorkspacesPage" ) )
@@ -75,14 +74,6 @@ export const AppRouter: React.FC = () => (
75
74
</ AuthAndFrame >
76
75
}
77
76
/>
78
- < Route
79
- path = "edit"
80
- element = {
81
- < AuthAndFrame >
82
- < WorkspaceSettingsPage />
83
- </ AuthAndFrame >
84
- }
85
- />
86
77
< Route
87
78
path = "schedule"
88
79
element = {
Original file line number Diff line number Diff line change 1
1
import Button from "@material-ui/core/Button"
2
- import Link from "@material-ui/core/Link"
3
2
import { makeStyles } from "@material-ui/core/styles"
4
3
import CancelIcon from "@material-ui/icons/Cancel"
5
4
import CloudDownloadIcon from "@material-ui/icons/CloudDownload"
6
5
import PlayArrowRoundedIcon from "@material-ui/icons/PlayArrowRounded"
7
6
import StopIcon from "@material-ui/icons/Stop"
8
7
import React from "react"
9
- import { Link as RouterLink } from "react-router-dom"
10
8
import { Workspace } from "../../api/typesGenerated"
11
9
import { getWorkspaceStatus , WorkspaceStatus } from "../../util/workspace"
12
10
import { Stack } from "../Stack/Stack"
@@ -60,9 +58,6 @@ export const WorkspaceActions: React.FC<WorkspaceActionsProps> = ({
60
58
61
59
return (
62
60
< Stack direction = "row" spacing = { 1 } >
63
- < Link underline = "none" component = { RouterLink } to = "edit" >
64
- < Button variant = "outlined" > Settings</ Button >
65
- </ Link >
66
61
{ canStart ( workspaceStatus ) && (
67
62
< WorkspaceActionButton
68
63
className = { styles . actionButton }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments