Commit c666da75 by G

Types -> types. success -> succes

parent 6c2102e9
......@@ -27,7 +27,7 @@ export const UserAuthenticationContext = createContext<UserAuthenticationContext
code: "",
adresse: "",
// biome-ignore lint/style/useNamingConvention: <Api response>
url_success: "",
url_succes: "",
// biome-ignore lint/style/useNamingConvention: <Api response>
url_echec: "",
entreprise: 0,
......@@ -57,7 +57,7 @@ export const UserAuthenticationContextProvider = ({ children }: { children: Reac
code: "BEASY-EXAMPLE-1",
adresse: "Plateau 2, 1023, Immeuble Chardy",
// biome-ignore lint/style/useNamingConvention: <Api response>
url_success: "https://example.com/success",
url_succes: "https://example.com/success",
// biome-ignore lint/style/useNamingConvention: <Api response>
url_echec: "https://example.com/echec",
entreprise: 0,
......
......@@ -138,9 +138,7 @@ const UserProfileScreen = () => {
<Text variant={"black"} fontWeight={"bold"}>
Url succès
</Text>
<Text textAlign={"center"}>
{userInformations.marchand.url_success}
</Text>
<Text textAlign={"center"}>{userInformations.marchand.url_succes}</Text>
</Box>
<Box
width={"100%"}
......
import { LOG } from "@logger";
import base64 from "react-native-base64";
import axiosRequest from "../axios-request";
import type { IpaginatedResponse, IpaymentType } from "./Types";
import type { IpaginatedResponse, IpaymentType } from "./types";
const basictoken = base64.encode("admin:admin");
......
import { LOG } from "@logger";
import base64 from "react-native-base64";
import axiosRequest from "../axios-request";
import type { PaymentCode } from "./Types";
import type { PaymentCode } from "./types";
const log = LOG.extend("transactions");
......
......@@ -20,7 +20,7 @@ export interface ImerchandInformations {
code: string;
adresse: string;
// biome-ignore lint/style/useNamingConvention: <Api response>
url_success: string;
url_succes: string;
// biome-ignore lint/style/useNamingConvention: <Api response>
url_echec: string;
entreprise: number;
......
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