Commit fc7a0f6b by G

set some default values for dev workflow

parent 922a7397
......@@ -40,18 +40,18 @@ export const UserAuthenticationContextProvider = ({ children }: { children: Reac
refresh: "",
});
const [userInformations, setUserInformations] = useState<IuserInformations>({
username: "",
email: "",
firstName: "",
lastName: "",
username: "JohnDoe",
email: "JohnDoe@example.com",
firstName: "John",
lastName: "Doe",
marchand: {
// biome-ignore lint/style/useNamingConvention: <Api response>
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,
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment