From 34781ff67ab9908f2758c598de3e786115c2a65e Mon Sep 17 00:00:00 2001 From: T'JAMPENS QUENTIN p2406187 Date: Fri, 27 Mar 2026 14:05:00 +0100 Subject: [PATCH] Fix interface import --- src/interfaces/{auth.interfaces.ts => auth.interface.ts} | 0 src/pages/Profile/ProfilePage.tsx | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/interfaces/{auth.interfaces.ts => auth.interface.ts} (100%) diff --git a/src/interfaces/auth.interfaces.ts b/src/interfaces/auth.interface.ts similarity index 100% rename from src/interfaces/auth.interfaces.ts rename to src/interfaces/auth.interface.ts diff --git a/src/pages/Profile/ProfilePage.tsx b/src/pages/Profile/ProfilePage.tsx index 5844adb..cb7a676 100644 --- a/src/pages/Profile/ProfilePage.tsx +++ b/src/pages/Profile/ProfilePage.tsx @@ -11,7 +11,7 @@ import getUserById from "../../utils/users/getUserById.js"; import ManageMember from "./components/ManageMember/ManageMember"; import uploadProfilePhoto from "../../utils/users/uploadProfilePhoto"; import deleteProfilePhoto from "../../utils/users/deleteProfilePhoto"; -import type { AuthContextType } from "../../interfaces/AuthInterfaces"; +import type { AuthContextType } from "../../interfaces/auth.interface"; import type TaskType from "../../interfaces/task.interface"; import type User from "../../interfaces/user.interface";