Skip to content

Commit 07bdd3f

Browse files
committed
Update copyright year
1 parent bd303a8 commit 07bdd3f

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2022 Transak Inc.
1+
Copyright (c) 2023 Transak Inc.
22

33
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
44

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ This component accepts most of the [react-native-webview props](https://github.c
7878

7979
## License
8080

81-
ISC Licensed. Copyright (c) 2022 Transak Inc.
81+
ISC Licensed. Copyright (c) 2023 Transak Inc.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@transak/react-native-sdk",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A React Native SDK for decentralised applications to onboard their global user base with fiat currency",
55
"license": "ISC",
66
"author": "Transak Inc. <[email protected]> (https://transak.com/)",

src/generate-url.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import generateQueryString from 'query-string';
22

33
const TRANSAK_URLS = {
4+
LOCAL_DEVELOPMENT: 'https://localhost:5005/',
45
STAGING: 'https://staging-global.transak.com/',
56
PRODUCTION: 'https://global.transak.com/',
67
};
@@ -23,4 +24,3 @@ function generateUrl(config) {
2324
}
2425

2526
export { generateUrl };
26-

src/react-native-sdk.js

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ function ReactNativeSdk({ queryParams, onTransakEventHandler, ...webviewProps })
5151
Alert.alert(error.message);
5252
}
5353
};
54+
5455
const onNavigationStateChange = (navState) => {
5556
if (navState.url.includes('/googlepay')) {
5657
openTransak(navState.url.replace('isWebView', 'useAsExternalPayment'));

0 commit comments

Comments
 (0)