Skip to content

Commit

Permalink
Typo/minor typos auth (#425)
Browse files Browse the repository at this point in the history
* fix: Corrected typo in "Forgot your password?" link text

* fix: Correct typo in "Sign up with Google" label

* fix: Correct typo in "Forgot your password?" link text
  • Loading branch information
CuriousCoder00 authored Oct 1, 2024
1 parent d0b7ff1 commit 02fa544
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/auth/signin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const Signin = () => {
href={APP_PATHS.FORGOT_PASSWORD}
className="text-xs text-muted-foreground font-medium hover:underline"
>
Forget your password?
Forgot your password?
</Link>
</div>
<Button
Expand Down
4 changes: 2 additions & 2 deletions src/components/auth/signup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export const Signup = () => {
href={APP_PATHS.FORGOT_PASSWORD}
className="text-xs text-muted-foreground font-medium hover:underline"
>
Forget your password?
Forgot your password?
</Link>
</div>
<Button
Expand All @@ -123,7 +123,7 @@ export const Signup = () => {
{form.formState.isSubmitting ? 'Please wait...' : 'Create Account'}
</Button>
<DemarcationLine />
<GoogleOauthButton label="Sign un with Google" />
<GoogleOauthButton label="Sign up with Google" />
</form>
</Form>
<div className="flex items-center justify-center mt-6">
Expand Down

0 comments on commit 02fa544

Please sign in to comment.