Skip to content

Commit

Permalink
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/selfish-tools-film.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@openauthjs/openauth": patch
---

fix copy for code resend
2 changes: 1 addition & 1 deletion packages/openauth/src/ui/code.tsx
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@ export function CodeUI(props: {
)}
{state.type === "code" && (
<FormAlert
message={"Code resent to " + state.claims.email}
message={(state.resend ? "Code resent to " : "Code sent to ") + state.claims.email}
color="success"
/>
)}

0 comments on commit 6da8647

Please sign in to comment.