Skip to content
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

fix: copy #611

Merged
merged 2 commits into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions backend/services/implementations/authService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class AuthService implements IAuthService {
</a>
</center>
<br>
Have questions about Jump Math? Drop us an email at <span style="text-decoration: underline;">[email protected]</span> and we’ll get in touch shortly!
Have questions about JUMP Math? Drop us an email at <span style="text-decoration: underline;">[email protected]</span> and we’ll get in touch shortly!
<br><br>
<strong style="letter-spacing: 0.16em;">AUTOMATION PRIVACY POLICY:</strong>
<br><br>
Expand Down Expand Up @@ -223,12 +223,12 @@ class AuthService implements IAuthService {
"email-header.png",
user.firstName,
[
"You have been invited to join the Jump Math Workspace!",
"Please use the link below to confirm your log in details and you can receive your personalized Jump Math email address if you haven’t already!",
"You have been invited to join the JUMP Math Workspace!",
"Please use the link below to confirm your log in details. Once you have verified your email, you can hop back into helping your class excel in mathematics.",
"We can’t wait for you to join a team of likeminded individuals and help us take a step forward in the education of over 250,000 students globally!",
],
emailVerificationLink,
"Open Jump Math",
"Open JUMP Math",
);
this.emailService.sendEmail(email, "Verify your email", emailBody);
} catch (error) {
Expand Down
2 changes: 1 addition & 1 deletion frontend/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>Jump Math</title>
<title>JUMP Math</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const FormModal = ({ isOpen, onClose, onSubmit }: FormModalProps) => {
</FormControl>
<FormControl as="fieldset" isRequired mt={8}>
<FormLabel color="grey.300">
Does the user already have a Jump Math email address?
Does the user already have a JUMP Math email address?
</FormLabel>
<RadioGroup
color="grey.300"
Expand Down Expand Up @@ -150,7 +150,7 @@ const FormModal = ({ isOpen, onClose, onSubmit }: FormModalProps) => {
<>
<FormControl isInvalid={isInvalidEmail} isRequired mt={6}>
<FormLabel color="grey.300">{`Please enter their ${
hasJumpMathEmail ? "Jump Math" : ""
hasJumpMathEmail ? "JUMP Math" : ""
} email address`}</FormLabel>
<Input
isInvalid={requiredFieldEmpty && email.length === 0}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const TeacherSignupTwo = ({
<>
<FormControl isInvalid={isCurrentlyTeachingJMError} isRequired>
<FormLabel color="grey.400">
Are you currently teaching Jump Math in the classroom?
Are you currently teaching JUMP Math in the classroom?
</FormLabel>
<SelectFormInput
field="currentlyTeachingJM"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/auth/usePageTitle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const usePageTitle = (title?: string, skip = false) => {
useEffect(() => {
if (skip) return;
if (!title) return;
document.title = `${title} | Jump Math`;
document.title = `${title} | JUMP Math`;
}, [title, skip]);
};
export default usePageTitle;
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const AddAdminConfirmationMessage = (): React.ReactElement => {
<MessageContainer
image={EnvelopePaperIllustration}
paragraphs={[
"The admin will receive an email shortly regarding their onboarding process for Jump Math.",
"The admin will receive an email shortly regarding their onboarding process for JUMP Math.",
"Changes will appear on the dashboard within 2-3 business days once the admin confirms their email.",
]}
subtitle="Thank you for your submission."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const AssessmentSummaryPage = (): React.ReactElement => {
{test && testSession && (
<HStack alignItems="flex-start" pt="4em">
<Image
alt="Jump Math Logo"
alt="JUMP Math Logo"
mx="2em"
src={JUMP_MATH_LOGO.src}
width="15%"
Expand Down
Loading