agora-appbuilder-core 4.0.0-beta.13 → 4.0.0-beta.14
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
|
@@ -163,7 +163,7 @@ const ParticipantView = (props) => {
|
|
|
163
163
|
onPress={() => setShowHostSection(!showHostSection)}
|
|
164
164
|
/>
|
|
165
165
|
{showHostSection ? (
|
|
166
|
-
<
|
|
166
|
+
<AllHostParticipants
|
|
167
167
|
emptyMessage={'No Host has joined yet.'}
|
|
168
168
|
uids={hostUids}
|
|
169
169
|
isMobile={isSmall()}
|
|
@@ -177,10 +177,10 @@ const ShareLinkProvider = (props: ShareLinkProvideProps) => {
|
|
|
177
177
|
};
|
|
178
178
|
|
|
179
179
|
const getBaseURL = () => {
|
|
180
|
-
let baseURL =
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
180
|
+
let baseURL = !isSDK
|
|
181
|
+
? $config.FRONTEND_ENDPOINT ||
|
|
182
|
+
(platform === 'web' && window.location.origin)
|
|
183
|
+
: undefined;
|
|
184
184
|
return baseURL;
|
|
185
185
|
};
|
|
186
186
|
|