Skip to content

Commit bf2a848

Browse files
committed
fix: flow type issue
1 parent e56a91f commit bf2a848

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/three-domain-secure/component.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ export function getThreeDomainSecureComponent(): TDSComponent {
123123

124124
const hasError = isCardFieldFlow
125125
? err
126-
: err || result?.success === false;
126+
: // $FlowFixMe[incompatible-use]
127+
err || result?.success === false;
127128

128129
if (hasError) {
129130
return onError(err);

0 commit comments

Comments
 (0)