We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c27faef commit 5db313cCopy full SHA for 5db313c
packages/shared/ReactIODescription.js
@@ -24,6 +24,8 @@ export function getIODescription(value: any): string {
24
return String(value.message);
25
} else if (typeof value.url === 'string') {
26
return value.url;
27
+ } else if (typeof value.href === 'string') {
28
+ return value.href;
29
} else if (typeof value.command === 'string') {
30
return value.command;
31
} else if (
0 commit comments