diff --git a/.github/workflows/frontend.yaml b/.github/workflows/frontend.yml similarity index 100% rename from .github/workflows/frontend.yaml rename to .github/workflows/frontend.yml diff --git a/public/app/app.tsx b/public/app/app.tsx index 9529ba3bc..20d76925b 100644 --- a/public/app/app.tsx +++ b/public/app/app.tsx @@ -2,7 +2,7 @@ import React from 'react'; import ReactDOM from 'react-dom/client'; import './jquery-import'; import { Provider } from 'react-redux'; -import store, { persistor } from './redux/store'; +import store from './redux/store'; import '@webapp/../sass/profile.scss'; import '@szhsin/react-menu/dist/index.css'; import Notifications from '@webapp/ui/Notifications'; @@ -31,7 +31,7 @@ function App() {
- + diff --git a/public/app/components/Sidebar.tsx b/public/app/components/Sidebar.tsx index f0908a0b1..a0677d131 100644 --- a/public/app/components/Sidebar.tsx +++ b/public/app/components/Sidebar.tsx @@ -60,13 +60,13 @@ export function Sidebar() { } > Single View diff --git a/public/app/pages/routes.ts b/public/app/pages/routes.ts index caf8ab5dd..dd6636fe0 100644 --- a/public/app/pages/routes.ts +++ b/public/app/pages/routes.ts @@ -1,5 +1,5 @@ export enum ROUTES { - CONTINOUS_SINGLE_VIEW = '/', + SINGLE_VIEW = '/', COMPARISON_VIEW = '/comparison', COMPARISON_DIFF_VIEW = '/comparison-diff', }