We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fc257a commit 3fbc7deCopy full SHA for 3fbc7de
src/three-domain-secure/interface.js
@@ -8,7 +8,6 @@ import {
8
} from "@paypal/sdk-client/src";
9
import { destroy as zoidDestroy } from "@krakenjs/zoid/src";
10
11
-import { devEnvOnlyExport } from "../lib";
12
import type { LazyExport } from "../types";
13
14
import {
@@ -46,9 +45,9 @@ export const ThreeDomainSecureClient: LazyExport<ThreeDomainSecureComponentInter
46
45
clientID: getClientID(),
47
},
48
});
49
- return devEnvOnlyExport({
+ return {
50
isEligible: (payload) => threeDomainSecureInstance.isEligible(payload),
51
show: () => threeDomainSecureInstance.show(),
52
- });
+ };
53
54
};
0 commit comments