diff --git a/src/contexts/UserAuthenticationContext.tsx b/src/contexts/UserAuthenticationContext.tsx index f873aa0..907681e 100644 --- a/src/contexts/UserAuthenticationContext.tsx +++ b/src/contexts/UserAuthenticationContext.tsx @@ -1,4 +1,4 @@ -import type { IuserInformations } from "@/utils/requests/Types"; +import type { IuserInformations } from "@/utils/requests/types"; import { createContext, useContext, useState } from "react"; import type { IauthenticationData } from "./Types"; export interface UserAuthenticationContextProps { diff --git a/src/utils/requests/userInformations.ts b/src/utils/requests/userInformations.ts index e6cc785..7df5354 100644 --- a/src/utils/requests/userInformations.ts +++ b/src/utils/requests/userInformations.ts @@ -1,7 +1,7 @@ import { LOG } from "@logger"; import base64 from "react-native-base64"; import axiosRequest from "../axios-request"; -import type { IuserInformations } from "./Types"; +import type { IuserInformations } from "./types"; const log = LOG.extend("getUserInformations");