remove info panel (#721)

* refactor: remove info panel

* chore: update tests
This commit is contained in:
Carlos Valente
2024-01-19 14:08:32 +01:00
committed by GitHub
parent 3c1be1fc10
commit fc5800bc21
9 changed files with 5 additions and 183 deletions
-9
View File
@@ -31,7 +31,6 @@ const EditorFeatureWrapper = lazy(() => import('./features/EditorFeatureWrapper'
const RundownPanel = lazy(() => import('./features/rundown/RundownExport'));
const TimerControl = lazy(() => import('./features/control/playback/TimerControlExport'));
const MessageControl = lazy(() => import('./features/control/message/MessageControlExport'));
const Info = lazy(() => import('./features/info/InfoExport'));
export default function AppRouter() {
return (
@@ -85,14 +84,6 @@ export default function AppRouter() {
</EditorFeatureWrapper>
}
/>
<Route
path='/info'
element={
<EditorFeatureWrapper>
<Info />
</EditorFeatureWrapper>
}
/>
{/*/!* Send to default if nothing found *!/*/}
<Route path='*' element={<STimer />} />
</Routes>