From fc7a0f6b8faa818043265de401cf7415b67423a4 Mon Sep 17 00:00:00 2001 From: G Date: Mon, 1 Jul 2024 11:21:52 +0000 Subject: [PATCH] set some default values for dev workflow --- src/contexts/UserAuthenticationContext.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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, }, -- libgit2 0.27.1