From bfcf1c3c991cc41ab7bac849f077ea2e43505598 Mon Sep 17 00:00:00 2001 From: hi-rustin Date: Fri, 5 May 2023 10:31:01 +0800 Subject: [PATCH 1/3] Remove unused import and fix typo --- public/app/app.tsx | 4 ++-- public/app/components/Sidebar.tsx | 4 ++-- public/app/pages/routes.ts | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/public/app/app.tsx b/public/app/app.tsx index 9529ba3bc..7394abf16 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..bc87f1e8f 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..7c8875dfa 100644 --- a/public/app/pages/routes.ts +++ b/public/app/pages/routes.ts @@ -1,5 +1,5 @@ export enum ROUTES { - CONTINOUS_SINGLE_VIEW = '/', + CONTINUOUS_SINGLE_VIEW = '/', COMPARISON_VIEW = '/comparison', COMPARISON_DIFF_VIEW = '/comparison-diff', } From 639ff90a550a586eaa26cfce7dd1e4ad890cf743 Mon Sep 17 00:00:00 2001 From: hi-rustin Date: Fri, 5 May 2023 10:31:42 +0800 Subject: [PATCH 2/3] All use yml --- .github/workflows/{frontend.yaml => frontend.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{frontend.yaml => frontend.yml} (100%) 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 From 70352f514cd9133768ce7bff15bebd449a9e7b97 Mon Sep 17 00:00:00 2001 From: hi-rustin Date: Tue, 9 May 2023 19:11:41 +0800 Subject: [PATCH 3/3] Rename --- public/app/app.tsx | 2 +- public/app/components/Sidebar.tsx | 4 ++-- public/app/pages/routes.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/public/app/app.tsx b/public/app/app.tsx index 7394abf16..20d76925b 100644 --- a/public/app/app.tsx +++ b/public/app/app.tsx @@ -31,7 +31,7 @@ function App() {
- + diff --git a/public/app/components/Sidebar.tsx b/public/app/components/Sidebar.tsx index bc87f1e8f..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 7c8875dfa..dd6636fe0 100644 --- a/public/app/pages/routes.ts +++ b/public/app/pages/routes.ts @@ -1,5 +1,5 @@ export enum ROUTES { - CONTINUOUS_SINGLE_VIEW = '/', + SINGLE_VIEW = '/', COMPARISON_VIEW = '/comparison', COMPARISON_DIFF_VIEW = '/comparison-diff', }