mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 04:54:18 +00:00
🗑 Remove PageSandbox
This commit is contained in:
parent
faa28d4990
commit
8975567118
3 changed files with 0 additions and 12 deletions
|
@ -4,7 +4,6 @@ import PageLogin from "./routes/PageLogin"
|
|||
import PageRepositories from "./routes/PageRepositories"
|
||||
import PageAlerts from "./routes/PageAlerts"
|
||||
import PageSettings from "./routes/PageSettings"
|
||||
import PageSandbox from "./routes/PageSandbox"
|
||||
import PageDashboard from "./routes/PageDashboard"
|
||||
import PageRoot from "./routes/PageRoot"
|
||||
import PageEdit from "./routes/PageEdit"
|
||||
|
@ -32,9 +31,6 @@ export default function PageSwitcher({ ...props }) {
|
|||
<Route path={"/settings"} exact={true}>
|
||||
<PageSettings/>
|
||||
</Route>
|
||||
<Route path={"/sandbox"} exact={true}>
|
||||
<PageSandbox/>
|
||||
</Route>
|
||||
<Route path={"/dashboard"} exact={true}>
|
||||
<PageDashboard/>
|
||||
</Route>
|
||||
|
|
|
@ -10,7 +10,6 @@ import {
|
|||
faHome,
|
||||
faKey,
|
||||
faUserCog,
|
||||
faWrench,
|
||||
} from "@fortawesome/free-solid-svg-icons"
|
||||
import ContextUser from "../../contexts/ContextUser"
|
||||
|
||||
|
@ -51,11 +50,6 @@ export default function Sidebar({ className, ...props }) {
|
|||
:
|
||||
null
|
||||
}
|
||||
{
|
||||
process.env.NODE_ENV === "development" ?
|
||||
<ButtonSidebar to={"/sandbox"} icon={faWrench}>Sandbox</ButtonSidebar>
|
||||
: null
|
||||
}
|
||||
</aside>
|
||||
)
|
||||
}
|
||||
|
|
2
nest_frontend/routes/.gitignore
vendored
2
nest_frontend/routes/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
|||
# Do not commit edits to the sandbox beyond the first
|
||||
/PageSandbox.*
|
Loading…
Reference in a new issue