diff --git a/package-lock.json b/package-lock.json index 1d6b4f30e5091283303c359b3d596bd543a8d98d..05adea3932a7394da33caae34c9016a46248f213 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16612,6 +16612,11 @@ "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", "dev": true }, + "reselect": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.0.0.tgz", + "integrity": "sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA==" + }, "resolve": { "version": "1.7.1", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz", diff --git a/src/componets/SignupEventComponents/SignupEventHistory/SignupEventHistoryLeftPanel/SignupEventHistoryLeftPanel.js b/src/componets/SignupEventComponents/SignupEventHistory/SignupEventHistoryLeftPanel/SignupEventHistoryLeftPanel.js index 5a564ed27852ecd20a242655251426df047f42e8..a4713abfbb1a33c88566dbdeeee8a9b6b98416c4 100644 --- a/src/componets/SignupEventComponents/SignupEventHistory/SignupEventHistoryLeftPanel/SignupEventHistoryLeftPanel.js +++ b/src/componets/SignupEventComponents/SignupEventHistory/SignupEventHistoryLeftPanel/SignupEventHistoryLeftPanel.js @@ -71,13 +71,6 @@ class SignupEventHistoryLeftPanel extends React.Component { const { time, key, elapsed } = convertFormat(event.eventProfile[this.state.sortingField] * 1000); - console.log("event time"); - console.log(event.eventProfile[this.state.sortingField] * 1000); - console.log("time ", time); - console.log("key ", key); - console.log("elapsed ", elapsed); - console.log(""); - return (
  • this.showActiveEvent(true, event, index)}> diff --git a/src/componets/SignupEventComponents/SignupEventInvitation/SignupEventInvitationLeftPanel/SignupEventInvitationLeftPanel.js b/src/componets/SignupEventComponents/SignupEventInvitation/SignupEventInvitationLeftPanel/SignupEventInvitationLeftPanel.js index 3f641d1194118781e631a3211e7ee31041987dfe..6f2a7597d511957e77e45110170ab595206deb84 100644 --- a/src/componets/SignupEventComponents/SignupEventInvitation/SignupEventInvitationLeftPanel/SignupEventInvitationLeftPanel.js +++ b/src/componets/SignupEventComponents/SignupEventInvitation/SignupEventInvitationLeftPanel/SignupEventInvitationLeftPanel.js @@ -49,13 +49,6 @@ class SignupEventInvitationLeftPanel extends React.Component { renderInvitation = (classes, t, index, invitation, showInvitation) => { const { time, key, elapsed } = convertFormat(invitation.createdTs * 1000); - console.log("invitation time"); - console.log(invitation.createdTs * 1000); - console.log("time ", time); - console.log("key ", key); - console.log("elapsed ", elapsed); - console.log(""); - return (
  • this.showActiveInvitation(true, invitation, index)}> diff --git a/src/core/resource/signupevent/SignupEventSagas.js b/src/core/resource/signupevent/SignupEventSagas.js index c6e187f3ba6323a42db6b27012fe1f1fde9e7d65..666ec2e119913efdac90c4a0582e2ba08f365072 100644 --- a/src/core/resource/signupevent/SignupEventSagas.js +++ b/src/core/resource/signupevent/SignupEventSagas.js @@ -195,7 +195,7 @@ function* handleGetEventProfileRequest(payload) { try { const res = yield call(SignupEventService.getEventProfile, eventSignupManager, accountId, eventId, isParticipants, accessToken); - + console.log('eventProfileRes', res); if (res && res.error) { @@ -226,7 +226,7 @@ function* handleGetEventProfileRequest(payload) { yield put(actions.getEventProfileSuccess({ eventProfileDetail, participantsList })); } - } catch(error){ + } catch (error) { yield put(actions.getEventProfileError(error)); } } @@ -455,7 +455,7 @@ function* handleUpdateEventInvitationRequest(payload) { console.log("calling invation update") console.log(""); - console.log(eventSignupManager); + //console.log(eventSignupManager); console.log(eventId2); console.log(isGoogleCalendar2); console.log(note2); @@ -467,12 +467,6 @@ function* handleUpdateEventInvitationRequest(payload) { console.log(accessToken); console.log(""); - // const verifyToken = yield call(authService.generateAuthToken, authManager); - - // console.log("verfiy token"); - // console.log(verifyToken.data.tokenresponsedetails.token); - // yield put(profileInitActions.initializingProfile({ initializing: false })); - const res = yield call(SignupEventService.updateSignupInvitation, eventSignupManager, eventId2, isGoogleCalendar2, note2, rsvp2, userType2, accountId, slots2, name2, accessToken); console.log("[RESPONSE] -> UPDATE INVITATION", res);