Skip to content

Commit

Permalink
text fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelaZQ1 committed Nov 15, 2023
1 parent 1ac462b commit 3034e6e
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/frontend-v2/components/Header/ChangePassword.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const ChangePassword: React.FC = () => {

return (
<>
<Text onClick={onOpen}>Change password</Text>
<Text onClick={onOpen}>Change Password</Text>
<Modal isOpen={isOpen} onClose={closeModal}>
<ModalOverlay />
<ModalContent as="form" onSubmit={handleSubmit(onSubmitHandler)}>
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend-v2/components/Header/GraduateHeaders.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const GraduatePreAuthHeader: React.FC = () => {
return (
<GraduateHeader
rightContent={
<GraduateButtonLink href="/login">Sign In</GraduateButtonLink>
<GraduateButtonLink href="/login">Log In</GraduateButtonLink>
}
/>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend-v2/components/Header/UserDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const UserDropdown: React.FC = () => {
<ChangePassword />
</MenuItem>
<MenuItem onClick={() => logout(router)}>
<Text>Logout</Text>
<Text>Log Out</Text>
</MenuItem>
</MenuList>
</Menu>
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend-v2/components/Plan/DeletePlanModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const DeletePlanModal: React.FC<DeletePlanModalProps> = ({
borderRadius="lg"
onClick={onClose}
>
Nevermind
Cancel
</Button>
<Button
variant="solid"
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend-v2/components/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ const SidebarContainer: React.FC<PropsWithChildren<SidebarContainerProps>> = ({
{creditsTaken}
{creditsToTake !== undefined && `/${creditsToTake}`}
</Text>
<Text color="primary.blue.dark.main">Completed Credits</Text>
<Text color="primary.blue.dark.main">Credits Completed</Text>
</Flex>
)}
{renderCoopBlock && (
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend-v2/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const Banner = (): JSX.Element => {
mt="2xl"
fontSize={{ desktop: "2xl", laptop: "2xl", tablet: "xl" }}
color="primary.blue.dark.main"
lineHeight="1.1"
lineHeight="1.3"
>
Navigate the Northeastern graduation requirements and create a
personalized plan of study.
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend-v2/pages/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const LoginForm: React.FC = () => {
required: "Password is required",
})}
/>
<Flex alignSelf='end'>
<Flex alignSelf="end">
<GraduateLink href="/forgotPassword" text="Forgot password?" />
</Flex>
</>
Expand Down
3 changes: 2 additions & 1 deletion packages/frontend-v2/pages/signup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ const SignUpForm: React.FC = () => {
Create Account
</Button>
<Text textAlign="center">
Already have an account? <GraduateLink href="/login" text="Login" />
Already have an account?{" "}
<GraduateLink href="/login" text="Log In" />
</Text>
</Flex>
}
Expand Down

0 comments on commit 3034e6e

Please sign in to comment.