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

Commit

Permalink
0.5.45
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelrk committed May 22, 2024
1 parent 3840533 commit 9b57c2d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 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.44";
export const VERSION = "0.5.45";

// minimum version of Deno required to run this CLI
// (see https://github.com/denoland/deployctl/blob/main/src/version.ts)
Expand Down
20 changes: 9 additions & 11 deletions lib/plugins/auth/islands/auth-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,17 @@ export function AuthForm(props: AuthFormProps) {
const showDivider = hasEmail && hasOAuth2;

const i18n = ({
emailButton: {
en: "Sign In with Email",
es: "Inicia sesión con Email",
en: {
emailButton: "Sign In with Email",
text: "Sign In with",
divider: "Or continue with",
},
text: {
en: "Sign In with",
es: "Inicia sesión con",
es: {
emailButton: "Inicia sesión con Email",
text: "Inicia sesión con",
divider: "O continua con",
},
divider: {
en: "Or continue with",
es: "O continua con",
},
})[props.config.locale ?? "es"];
})?.[props.config.locale ?? "es"]!;

return (
<>
Expand Down

0 comments on commit 9b57c2d

Please sign in to comment.