Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Commit

Permalink
0.5.46
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelrk committed May 22, 2024
1 parent 9b57c2d commit f601269
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/cli/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// latest version of netzo/cli (see https://github.com/netzo/netzo/releases)
export const VERSION = "0.5.45";
export const VERSION = "0.5.46";

// minimum version of Deno required to run this CLI
// (see https://github.com/denoland/deployctl/blob/main/src/version.ts)
Expand Down
6 changes: 3 additions & 3 deletions lib/plugins/auth/islands/auth-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export function AuthForm(props: AuthFormProps) {
<div className="grid gap-6">
{!!providers?.email && (
<form method="POST" action="/auth/email">
<ButtonEmail />
<ButtonEmail text={i18n.emailButton} />
</form>
)}

Expand Down Expand Up @@ -207,7 +207,7 @@ export function AuthForm(props: AuthFormProps) {
);
}

function ButtonEmail() {
function ButtonEmail(props: { text: string }) {
return (
<div className="grid gap-2">
<div className="grid gap-1">
Expand All @@ -224,7 +224,7 @@ function ButtonEmail() {
/>
</div>
<Button variant="default" type="submit">
{i18n.emailButton}
{props.text}
</Button>
</div>
);
Expand Down

0 comments on commit f601269

Please sign in to comment.