agora-appbuilder-core 4.0.22-beta-3 → 4.0.22-beta-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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agora-appbuilder-core",
3
- "version": "4.0.22-beta-3",
3
+ "version": "4.0.22-beta-4",
4
4
  "description": "React Native template for RTE app builder",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -436,6 +436,7 @@ const ChatConfigure = ({children}) => {
436
436
  };
437
437
 
438
438
  const deleteChatUser = async () => {
439
+ return; // worker will handle this
439
440
  const groupID = data.chat.group_id;
440
441
  const userID = data.uid;
441
442
  const isChatGroupOwner = data.chat.is_group_owner;
@@ -372,6 +372,7 @@ const ChatConfigure = ({children}) => {
372
372
  };
373
373
 
374
374
  const deleteChatUser = async () => {
375
+ return; // worker will handle this
375
376
  const groupID = data.chat.group_id;
376
377
  const userID = data.uid;
377
378
  const isChatGroupOwner = data.chat.is_group_owner;