-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Revert achievement ii #546
base: main
Are you sure you want to change the base?
Conversation
39b75fc
to
4669d93
Compare
59b0fd0
to
1b2f350
Compare
@@ -135,6 +160,7 @@ const ImportantInformation: React.FC<Props> = ({ variant }) => { | |||
const pupil = data?.me?.pupil; | |||
const student = data?.me?.student; | |||
const email = data?.me?.email; | |||
const nextStepAchievements: Achievement[] = !GAMIFICATION_ACTIVE ? [] : data?.me.nextStepAchievements ?? []; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can remove the feature toggle
progressDescription | ||
actionName | ||
actionRedirectLink | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe as an additional safeguard (and I think it generally makes sense) we could maybe slightly defer the ImportantInformation query a bit (useLazyQuery + useEffect with timeout that triggers it) so that other parts of the page load first and then we have plenty of time to fetch these? For sure we would then make sure that adding the important notifications does not cause a layout shift ...
@@ -289,6 +320,8 @@ const ImportantInformation: React.FC<Props> = ({ variant }) => { | |||
}); | |||
|
|||
// -------- Certificate of Conduct ----------- | |||
// TODO - remove if achievements are included [ONBOARDING]? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, need to keep it - Support can request this even if the user is not currently registering - Or would this show up as a ghost?
@@ -190,6 +218,7 @@ const ImportantInformation: React.FC<Props> = ({ variant }) => { | |||
}); | |||
|
|||
// -------- Screening ----------- | |||
// TODO - remove if achievements are included |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What if already screened users request another screening - e.g. students screened as tutors want to be screened as instructors?
1b2f350
to
9e72b17
Compare
No description provided.