From 450373c8a54bd476f7244d2d1e0eb02332572a46 Mon Sep 17 00:00:00 2001 From: Giovanni-Josserand Date: Thu, 12 Mar 2026 11:41:01 +0100 Subject: [PATCH] Rename Loading ui component files --- .../{loading/loading.module.css => Loading/Loading.module.css} | 0 src/components/ui/{loading/loading.tsx => Loading/Loading.tsx} | 0 src/pages/Volunteers/VolunteersPage.tsx | 2 +- src/stories/Loading.stories.jsx | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename src/components/ui/{loading/loading.module.css => Loading/Loading.module.css} (100%) rename src/components/ui/{loading/loading.tsx => Loading/Loading.tsx} (100%) diff --git a/src/components/ui/loading/loading.module.css b/src/components/ui/Loading/Loading.module.css similarity index 100% rename from src/components/ui/loading/loading.module.css rename to src/components/ui/Loading/Loading.module.css diff --git a/src/components/ui/loading/loading.tsx b/src/components/ui/Loading/Loading.tsx similarity index 100% rename from src/components/ui/loading/loading.tsx rename to src/components/ui/Loading/Loading.tsx diff --git a/src/pages/Volunteers/VolunteersPage.tsx b/src/pages/Volunteers/VolunteersPage.tsx index ae43fbc..99fb95c 100644 --- a/src/pages/Volunteers/VolunteersPage.tsx +++ b/src/pages/Volunteers/VolunteersPage.tsx @@ -6,7 +6,7 @@ import ToolBar from "../../components/ToolBar/ToolBar"; import filter from "../../utils/filter"; import getUserById from "../../utils/users/getUserById"; import User from "./interfaces/user.interface"; -import Loading from "../../components/ui/loading/loading"; +import Loading from "../../components/ui/Loading/loading"; interface Filters { alphabetical: "asc" | "desc"; diff --git a/src/stories/Loading.stories.jsx b/src/stories/Loading.stories.jsx index 6986aa8..386c3ca 100644 --- a/src/stories/Loading.stories.jsx +++ b/src/stories/Loading.stories.jsx @@ -1,4 +1,4 @@ -import Loading from "../components/ui/loading/loading.tsx"; +import Loading from "../components/ui/Loading/loading.tsx"; export default {