Skip to content

Commit

Permalink
fix SignInPage capitalisation (#8299)
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel Cousens <dcousens@users.noreply.github.com>
  • Loading branch information
dcousens and dcousens authored Feb 13, 2023
1 parent 7ebc68e commit dc2f6f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/auth/src/pages/SigninPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export const SigninPage = ({
};

return (
<SigninContainer title="Keystone - Sign In">
<SigninContainer title="Keystone - Sign in">
<Stack gap="xlarge" as="form" onSubmit={onSubmit}>
<H1>Sign In</H1>
{error && (
Expand Down Expand Up @@ -168,7 +168,7 @@ export const SigninPage = ({
}
type="submit"
>
Sign In
Sign in
</Button>
{/* Disabled until we come up with a complete password reset workflow */}
{/* <Button weight="none" tone="active" onClick={() => setMode('forgot password')}>
Expand Down
2 changes: 1 addition & 1 deletion tests/examples-smoke-tests/basic.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ exampleProjectTests('../examples/basic', (browserType, mode) => {
await page.click('button:has-text("Sign out")');
await page.fill('[placeholder="email"]', 'admin@keystonejs.com');
await page.fill('[placeholder="password"]', 'password');
await page.click('button:has-text("Sign In")');
await page.click('button:has-text("Sign in")');
});

test('update user', async () => {
Expand Down

0 comments on commit dc2f6f6

Please sign in to comment.