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 844d891 commit d482301Copy full SHA for d482301
scripts/catalog.js
@@ -65,7 +65,7 @@ const getConnectionModes = (destination) => {
65
connectionModes.device.mobile = true
66
break
67
case 'WEB':
68
- if (destination.browserUnbundlingSupported && destination.browserUnbundlingPublic) {
+ if (destination.browserUnbundlingSupported) {
69
connectionModes.cloud.web = true
70
}
71
connectionModes.device.web = true
@@ -84,9 +84,6 @@ const getConnectionModes = (destination) => {
84
if (destination.platforms.server) {
85
connectionModes.cloud.server = true
86
87
- if (destination.platforms.browser && destination.browserUnbundlingPublic) {
88
- connectionModes.cloud.web = true
89
- }
90
91
92
})
0 commit comments