@crossmint/client-sdk-react-ui 0.0.7 → 0.0.8-alpha.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crossmint/client-sdk-react-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8-alpha.0",
|
|
4
4
|
"author": "Paella Labs Inc",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": "https://github.com/CrossMint/crossmint-client-sdk",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"react": "^17.0.2",
|
|
41
41
|
"react-dom": "^17.0.2"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "de01d9a883021d03c2cf37f9442144abb8fae9b9"
|
|
44
44
|
}
|
|
@@ -7,7 +7,7 @@ export interface PopupProviderProps {
|
|
|
7
7
|
children: ReactNode;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
const PROD_URL = "https://crossmint.io";
|
|
10
|
+
const PROD_URL = "https://www.crossmint.io";
|
|
11
11
|
const DEV_URL = "http://localhost:3001";
|
|
12
12
|
|
|
13
13
|
export const CrossMintPopupProvider: FC<PopupProviderProps> = ({ development, children }) => {
|
|
@@ -19,7 +19,7 @@ export const CrossMintStatusProvider: FC<CrossMintStatusProviderProps> = ({
|
|
|
19
19
|
);
|
|
20
20
|
|
|
21
21
|
async function fetchClientIntegration() {
|
|
22
|
-
const res = await fetch(`https://crossmint.io/api/crossmint/onboardingRequests/${clientId}/status`);
|
|
22
|
+
const res = await fetch(`https://www.crossmint.io/api/crossmint/onboardingRequests/${clientId}/status`);
|
|
23
23
|
|
|
24
24
|
if (res.status === 200) {
|
|
25
25
|
const resData: { clientId: string; status: OnboardingRequestStatusResponse } = await res.json();
|