Skip to content

Commit

Permalink
689 Change a few instances of sign-in to log-in
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Schroer committed Feb 5, 2024
1 parent d763060 commit 67e35a8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/components/ui/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,12 @@ const SiteLinks = () => {
return (
<ul className={styles.navRight}>
{/* Todo: This will eventually be replaced by a user icon with a dropdown menu of account related options.
The designs are still forthcoming. For now, it serves as a basic sign-out functionality for the purposes
The designs are still forthcoming. For now, it serves as a basic log-out functionality for the purposes
of development and testing.
*/}
{authState.isAuthenticated && (
<li>
<Link to="/sign-out">Sign Out</Link>
<Link to="/log-out">Sign Out</Link>
</li>
)}
<li>
Expand Down
2 changes: 1 addition & 1 deletion app/pages/Auth/SignUpPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const SignUpPage = () => {
return (
<div className={styles.authPage}>
<h1 className={styles.title}>For Case Managers</h1>
<Link to="/sign-in">Already have an account? Log in!</Link>
<Link to="/log-in">Already have an account? Log in!</Link>
<form className={styles.authForm} onSubmit={signUp}>
<input
type="text"
Expand Down
2 changes: 1 addition & 1 deletion app/utils/AuthService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default class AuthService {
};

// This method passes the user's verification code to Auth0's server, which
// completes their sign-up/sign-in action
// completes their sign-up/log-in action
static passwordlessVerify = (
authClient: WebAuth,
email: string,
Expand Down

0 comments on commit 67e35a8

Please sign in to comment.