Skip to content

Commit 3e9e94e

Browse files
authored
fix: change sign up title (#368)
1 parent 30d71e8 commit 3e9e94e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: public/locales/en/translation.json

+1
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,7 @@
284284
"Productpage": "Product page",
285285
"comingsoon": "coming soon",
286286
"Somethingnewiscoming": "Something new is coming",
287+
"Sign up": "Sign up",
287288
"Sign up using": "Sign up using",
288289
"Your token has expired, try to login again": "Your token has expired, try to login again",
289290
"Reset Password": "Reset Password",

Diff for: src/pages/Organization/UserRegister.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const Signup = () => {
2222
window.location.href.lastIndexOf('/') + 1,
2323
);
2424
const originalToken: any = token.replaceAll('*', '.');
25-
useDocumentTitle('Login');
25+
useDocumentTitle('Sign up');
2626

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

0 commit comments

Comments
 (0)