contentoh-components-library 21.3.20 → 21.3.21

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/.env.production CHANGED
@@ -24,7 +24,7 @@ REACT_APP_PENDING_INVITATIONS=https://3v43slee1m.execute-api.us-east-1.amazonaws
24
24
 
25
25
  REACT_APP_IMAGES_BUCKET=content-management-images-prod
26
26
  REACT_APP_IMAGES_PROFILE_BUCKET=content-management-profile-prod
27
- REACT_APP_KUTS3=AKIA5CPHLQTT46EQ5TIK
28
- REACT_APP_AKUTS3=tZDdrmvwxM1cScspfxFM3XpU4HSYrCNPazyHd0BL
27
+ REACT_APP_KUTS3=AKIA5CPHLQTTS22HCGHW
28
+ REACT_APP_AKUTS3=RSpwEaM0fsLEgN7BJzRyCKqyU0lNExTsPUvxyNXm
29
29
  REACT_APP_USER_POOL_ID=us-east-1_XMZQdqkGj
30
30
  REACT_APP_USER_POOL_WEB_CLIENT_ID=5ac8tpgs6gbsq13frvrpieep40
@@ -204,7 +204,7 @@ var ContentChat = function ContentChat(props) {
204
204
  setRunUpdate(function (prev) {
205
205
  return prev + 1;
206
206
  });
207
- }, 5000);
207
+ }, 15000);
208
208
  setProcessUpdateID(processID);
209
209
  return function () {
210
210
  return clearTimeout(processID);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contentoh-components-library",
3
- "version": "21.3.20",
3
+ "version": "21.3.21",
4
4
  "dependencies": {
5
5
  "@aws-amplify/auth": "^4.5.3",
6
6
  "@aws-amplify/datastore": "^3.11.0",
@@ -100,7 +100,7 @@ export const ContentChat = (props) => {
100
100
  if (startUpdate == 0) return;
101
101
  const processID = setTimeout(() => {
102
102
  setRunUpdate((prev) => prev + 1);
103
- }, 5000);
103
+ }, 15000);
104
104
  setProcessUpdateID(processID);
105
105
  return () => clearTimeout(processID);
106
106
  }, [startUpdate]);