From 62273616a3bef575559dd3bfe575b10f44663856 Mon Sep 17 00:00:00 2001 From: Anwesh Budhathoki Date: Wed, 6 Nov 2024 11:53:12 +0545 Subject: [PATCH] Rename the router file name --- config-ui/src/app/{routrer.tsx => router.tsx} | 0 config-ui/src/main.tsx | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename config-ui/src/app/{routrer.tsx => router.tsx} (100%) diff --git a/config-ui/src/app/routrer.tsx b/config-ui/src/app/router.tsx similarity index 100% rename from config-ui/src/app/routrer.tsx rename to config-ui/src/app/router.tsx diff --git a/config-ui/src/main.tsx b/config-ui/src/main.tsx index d463e53cbd3..81dc9b8a30f 100644 --- a/config-ui/src/main.tsx +++ b/config-ui/src/main.tsx @@ -24,7 +24,7 @@ import { ConfigProvider } from 'antd'; import { PageLoading } from '@/components'; import { store } from './app/store'; -import { router } from './app/routrer'; +import { router } from './app/router'; import './index.css'; const root = createRoot(document.getElementById('root') as HTMLElement);