@fat-zebra/sdk 1.4.2 → 1.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/react/VerifyCard.js
CHANGED
|
@@ -7,6 +7,7 @@ const Frame = ({ handlers, config }) => {
|
|
|
7
7
|
config,
|
|
8
8
|
handlers: handlers,
|
|
9
9
|
});
|
|
10
|
+
console.log("config", config);
|
|
10
11
|
const environmentConfig = env[config.environment || Environment.production];
|
|
11
12
|
return (React.createElement("div", null,
|
|
12
13
|
React.createElement("iframe", { src: url, width: "100%", height: "700px", title: "verification-form" }),
|
|
@@ -4,6 +4,7 @@ import { generatePaymentURL } from "./url";
|
|
|
4
4
|
import Sca from "../sca";
|
|
5
5
|
import GatewayClient from "../shared/api-gateway-client";
|
|
6
6
|
const useFatZebra = ({ config, handlers }) => {
|
|
7
|
+
console.log(config);
|
|
7
8
|
const { options, accessToken, paymentIntent, username } = config;
|
|
8
9
|
const sca = useMemo(() => {
|
|
9
10
|
const gatewayClient = new GatewayClient({ accessToken, username });
|