Skip to content

Commit

Permalink
commented out wrapped for safety
Browse files Browse the repository at this point in the history
  • Loading branch information
NIDHI2023 committed Jan 20, 2025
1 parent 8c26bf9 commit 4aaa555
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/pages/SplitView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ const SplitView = ({
courseId={match.params.courseId}
course={course}
countdownZero={countdownZero}
setDisplayWrapped={setDisplayWrapped}
// setDisplayWrapped={setDisplayWrapped}
/>
{banners.map((banner, index) => (
<Banner
Expand Down Expand Up @@ -271,21 +271,21 @@ const SplitView = ({
<Loader active={true} content="Loading" />
))}
<ProductUpdates />
{user && user.wrapped ? (
{/* {user && user.wrapped ? (
<WrappedCountdown
setDisplayWrapped={setDisplayWrapped}
setCountdownZero={setCountdownZero}
wrappedDate={{ launchDate: launch, startDate: start }}
/>
) : null}
) : null} */}
{displayFeedbackPrompt ? (
<FeedbackPrompt
onClose={submitFeedback(removedQuestionId, course, session.sessionId)}
closeFeedbackPrompt={() => setDisplayFeedbackPrompt(false)}
/>
) : null}

{displayWrapped ? <Wrapped user={user} onClose={() => setDisplayWrapped(false)} /> : null}
{/* {displayWrapped ? <Wrapped user={user} onClose={() => setDisplayWrapped(false)} /> : null} */}
</>
);
};
Expand Down

0 comments on commit 4aaa555

Please sign in to comment.