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: lowercase some copy in the sign in step #784

Merged
merged 1 commit into from
Jun 26, 2024
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
4 changes: 3 additions & 1 deletion account-kit/react/src/components/divider.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import { ls } from "../strings.js";

// this isn't used externally
// eslint-disable-next-line jsdoc/require-jsdoc
export const Divider = () => {
return (
<div className={`flex flex-row gap-3 w-full items-center text-fg-tertiary`}>
<div className={`h-[1px] bg-static basis-full shrink grow`} />
<p>Or</p>
<p>{ls.login.or}</p>
<div className={`h-[1px] bg-static basis-full shrink grow`} />
</div>
);
Expand Down
3 changes: 2 additions & 1 deletion account-kit/react/src/strings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ const STRINGS = {
"en-US": {
login: {
tosPrefix: "By signing in, you agree to the",
tosLink: "Terms of Service",
tosLink: "terms of service",
email: {
placeholder: "Email",
button: "Continue",
},
passkey: {
button: "I have a passkey",
},
or: "or",
},
addPasskey: {
title: "Add a passkey",
Expand Down
Loading