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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agora-appbuilder-core",
3
- "version": "4.0.0-beta.13",
3
+ "version": "4.0.0-beta.14",
4
4
  "description": "React Native template for RTE app builder",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -163,7 +163,7 @@ const ParticipantView = (props) => {
163
163
  onPress={() => setShowHostSection(!showHostSection)}
164
164
  />
165
165
  {showHostSection ? (
166
- <AllAudienceParticipants
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
- platform === 'web' && !isSDK
182
- ? $config.FRONTEND_ENDPOINT || window.location.origin
183
- : undefined;
180
+ let baseURL = !isSDK
181
+ ? $config.FRONTEND_ENDPOINT ||
182
+ (platform === 'web' && window.location.origin)
183
+ : undefined;
184
184
  return baseURL;
185
185
  };
186
186