Skip to content

Commit

Permalink
fix: change sign up title (#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
ceelogre authored Mar 14, 2024
1 parent 30d71e8 commit 3e9e94e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@
"Productpage": "Product page",
"comingsoon": "coming soon",
"Somethingnewiscoming": "Something new is coming",
"Sign up": "Sign up",
"Sign up using": "Sign up using",
"Your token has expired, try to login again": "Your token has expired, try to login again",
"Reset Password": "Reset Password",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Organization/UserRegister.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const Signup = () => {
window.location.href.lastIndexOf('/') + 1,
);
const originalToken: any = token.replaceAll('*', '.');
useDocumentTitle('Login');
useDocumentTitle('Sign up');

const { t } = useTranslation();
const [passwordShown, setPasswordShown] = useState(false);
Expand Down

0 comments on commit 3e9e94e

Please sign in to comment.