diff --git a/src/contexts/UserAuthenticationContext.tsx b/src/contexts/UserAuthenticationContext.tsx index 907681e..8a94a52 100644 --- a/src/contexts/UserAuthenticationContext.tsx +++ b/src/contexts/UserAuthenticationContext.tsx @@ -40,18 +40,18 @@ export const UserAuthenticationContextProvider = ({ children }: { children: Reac refresh: "", }); const [userInformations, setUserInformations] = useState({ - username: "", - email: "", - firstName: "", - lastName: "", + username: "JohnDoe", + email: "JohnDoe@example.com", + firstName: "John", + lastName: "Doe", marchand: { // biome-ignore lint/style/useNamingConvention: - marchand_id: "", - nom: "", - code: "", - adresse: "", - urlSuccess: "", - urlEchec: "", + marchand_id: "id123", + nom: "Beasy", + code: "BEASY-EXAMPLE-1", + adresse: "Plateau 2, 1023, Immeuble Chardy", + urlSuccess: "https://example.com/success", + urlEchec: "https://example.com/echec", entreprise: 0, user: 0, },