Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit c875d37

Browse files
authored
Merge pull request #599 from yoution/issue-598
#598 [DEV] Hide connect calendar feature
2 parents 0d5d84a + c3e7974 commit c875d37

File tree

2 files changed

+25
-21
lines changed
  • src/routes/PositionDetails/components/InterviewPopup

2 files changed

+25
-21
lines changed

src/routes/PositionDetails/components/InterviewPopup/ManageAvailability/index.jsx

+13-11
Original file line numberDiff line numberDiff line change
@@ -247,17 +247,19 @@ const ManageAvailability = ({ scheduleDetails, onContinue }) => {
247247
</div>
248248

249249
<div styleName="button-wrapper">
250-
<div
251-
onClick={() =>
252-
onContinue(POPUP_STAGES.MANAGE_CALENDAR, {
253-
timezone,
254-
slots,
255-
})
256-
}
257-
styleName="manage-calendar"
258-
>
259-
Manage connected calendar
260-
</div>
250+
{/* issue #598, hide `Manage connected calendar` button temporarily */}
251+
<div></div>
252+
{/* <div */}
253+
{/* onClick={() => */}
254+
{/* onContinue(POPUP_STAGES.MANAGE_CALENDAR, { */}
255+
{/* timezone, */}
256+
{/* slots, */}
257+
{/* }) */}
258+
{/* } */}
259+
{/* styleName="manage-calendar" */}
260+
{/* > */}
261+
{/* Manage connected calendar */}
262+
{/* </div> */}
261263
<Button
262264
onClick={() => onContinueAhead()}
263265
disabled={isDisabled()}

src/routes/PositionDetails/components/InterviewPopup/SelectDuration/index.jsx

+12-10
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,18 @@ const SelectDuration = ({ onContinue, onGoBack, scheduleDetails }) => {
7171
</div>
7272
</div>
7373
<div styleName="button-wrapper">
74-
<div
75-
onClick={() =>
76-
onContinue(POPUP_STAGES.MANAGE_CALENDAR, {
77-
duration,
78-
})
79-
}
80-
styleName="manage-calendar"
81-
>
82-
Manage connected calendar
83-
</div>
74+
{/* issue #598, hide `Manage connected calendar` button temporarily */}
75+
<div></div>
76+
{/* <div */}
77+
{/* onClick={() => */}
78+
{/* onContinue(POPUP_STAGES.MANAGE_CALENDAR, { */}
79+
{/* duration, */}
80+
{/* }) */}
81+
{/* } */}
82+
{/* styleName="manage-calendar" */}
83+
{/* > */}
84+
{/* Manage connected calendar */}
85+
{/* </div> */}
8486
<div styleName="button-wrapper-right-pane">
8587
<Button
8688
styleName="back-button"

0 commit comments

Comments
 (0)