Skip to content

Commit a417741

Browse files
authored
fix: resolve type checking issues (#126)
1 parent 821c49d commit a417741

File tree

4 files changed

+20156
-1437
lines changed

4 files changed

+20156
-1437
lines changed

example/src/ProcessScreen.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ class ProcessScreen extends React.Component {
4545
navigation: any;
4646
eventListener: any;
4747
isPopupVisible: boolean;
48+
statusBarLight: boolean;
4849

4950
merchantId: string;
5051
clientId: string;
@@ -221,7 +222,7 @@ class ProcessScreen extends React.Component {
221222
this.merchantId,
222223
JSON.stringify(orderDetailsNew),
223224
signNew,
224-
this.merchantKeyId
225+
this.merchantKeyId,
225226
this.statusBarLight
226227
);
227228
HyperSdkReact.process(JSON.stringify(payload));
@@ -836,7 +837,7 @@ class ProcessScreen extends React.Component {
836837
this.merchantId,
837838
JSON.stringify(this.orderDetails),
838839
this.signature,
839-
this.merchantKeyId
840+
this.merchantKeyId,
840841
this.statusBarLight
841842
);
842843

@@ -852,7 +853,7 @@ class ProcessScreen extends React.Component {
852853
this.merchantId,
853854
JSON.stringify(this.orderDetails),
854855
this.signature,
855-
this.merchantKeyId
856+
this.merchantKeyId,
856857
this.statusBarLight
857858
);
858859

0 commit comments

Comments
 (0)