File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ import Login from '../pages/Login';
2222import Register from '../pages/Register' ;
2323import Dashboard from '../pages/Dashboard' ;
2424import Room from '../pages/Room' ;
25- import App from './App' ;
2625import Profile from '../pages/Profile' ;
2726import RoomSettings from '../pages/RoomSettings' ;
2827import theme from '../config/theme' ;
@@ -55,8 +54,7 @@ function AppBreadcrumbs({ auth }) {
5554 const breadcrumbNameMap = {
5655 'dashboard' : 'Dashboard' ,
5756 'rooms' : 'Rooms' ,
58- 'profile' : 'Profile' ,
59- 'legacy' : 'Legacy Canvas'
57+ 'profile' : 'Profile'
6058 } ;
6159
6260 return (
@@ -391,7 +389,6 @@ export default function Layout() {
391389 < Box className = "page-scroll-container" sx = { { flex : 1 , overflow : 'auto' , pb : 'calc(var(--rescanvas-footer-height) + 1000px)' } } >
392390 < Routes >
393391 < Route path = "/" element = { < HomeRedirect auth = { auth } /> } />
394- < Route path = "/legacy" element = { < App auth = { auth } hideHeader hideFooter /> } />
395392 < Route path = "/blog" element = { < Blog /> } />
396393 < Route path = "/metrics" element = { < MetricsDashboard /> } />
397394 < Route path = "/analytics" element = { < AnalyticsPage /> } />
Original file line number Diff line number Diff line change @@ -384,7 +384,6 @@ export default function Dashboard({ auth }) {
384384 < Button variant = "contained" size = "small" onClick = { ( ) => { setNewType ( 'private' ) ; setOpenCreate ( true ) ; } } > New Private</ Button >
385385 < Button variant = "contained" size = "small" onClick = { ( ) => { setNewType ( 'secure' ) ; setOpenCreate ( true ) ; } } > New Secure</ Button >
386386 < Button variant = "outlined" size = "small" onClick = { ( ) => setShowTemplates ( true ) } > Templates</ Button >
387- < Button variant = "outlined" size = "small" component = { RouterLinkWrapper } to = "/legacy" > Legacy</ Button >
388387 </ Stack >
389388
390389 { showTemplates && (
You can’t perform that action at this time.
0 commit comments