@aws-amplify/ui-react-core 2.1.2 → 2.1.4
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.
|
@@ -6,7 +6,7 @@ const handleMessageAction = ({ action, handleMessageLinkAction, url, }) => {
|
|
|
6
6
|
logger.info(`Handle action: ${action}`);
|
|
7
7
|
if (action === 'LINK' || action === 'DEEP_LINK') {
|
|
8
8
|
if (!isString(url)) {
|
|
9
|
-
logger.warn(`url must be of type string: ${url}`);
|
|
9
|
+
logger.warn(`url must be of type string. Received: ${url}`);
|
|
10
10
|
return;
|
|
11
11
|
}
|
|
12
12
|
handleMessageLinkAction(url);
|
package/dist/index.js
CHANGED
|
@@ -598,7 +598,7 @@ const handleMessageAction = ({ action, handleMessageLinkAction, url, }) => {
|
|
|
598
598
|
logger.info(`Handle action: ${action}`);
|
|
599
599
|
if (action === 'LINK' || action === 'DEEP_LINK') {
|
|
600
600
|
if (!isString__default["default"](url)) {
|
|
601
|
-
logger.warn(`url must be of type string: ${url}`);
|
|
601
|
+
logger.warn(`url must be of type string. Received: ${url}`);
|
|
602
602
|
return;
|
|
603
603
|
}
|
|
604
604
|
handleMessageLinkAction(url);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/ui-react-core",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"react-native": "dist/index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"test:watch": "yarn test --watch"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@aws-amplify/ui": "5.
|
|
31
|
+
"@aws-amplify/ui": "5.3.1",
|
|
32
32
|
"@xstate/react": "3.0.1",
|
|
33
33
|
"lodash": "4.17.21",
|
|
34
34
|
"xstate": "^4.33.6"
|