From 227da79502493cd26efb9e18ef871daed4ef738b Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Mon, 31 Oct 2022 03:24:27 -0400 Subject: [PATCH] Rename loading component file --- src/components/ConnectionRequired.tsx | 2 +- src/components/loading/{Loading.tsx => LoadingComponent.tsx} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/components/loading/{Loading.tsx => LoadingComponent.tsx} (100%) diff --git a/src/components/ConnectionRequired.tsx b/src/components/ConnectionRequired.tsx index 62e5f66113..41af3a2c21 100644 --- a/src/components/ConnectionRequired.tsx +++ b/src/components/ConnectionRequired.tsx @@ -3,7 +3,7 @@ import { Outlet, useNavigate } from 'react-router-dom'; import alert from './alert'; import { appRouter } from './appRouter'; -import Loading from './loading/Loading'; +import Loading from './loading/LoadingComponent'; import ServerConnections from './ServerConnections'; import globalize from '../scripts/globalize'; diff --git a/src/components/loading/Loading.tsx b/src/components/loading/LoadingComponent.tsx similarity index 100% rename from src/components/loading/Loading.tsx rename to src/components/loading/LoadingComponent.tsx