Removed a problem with duplicate binds in worker

This commit is contained in:
Frikky
2025-04-03 18:23:34 +02:00
parent 3ce9a75ef6
commit d1d06df2b0
4 changed files with 17 additions and 7 deletions
+10 -2
View File
@@ -323,9 +323,17 @@ const LoginPage = props => {
if (document !== undefined) {
if (register) {
document.title = "Login to Shuffle SaaS"
if (isCloud) {
document.title = "Login to Shuffle SaaS"
} else {
document.title = "Login to Shuffle"
}
} else {
document.title = "Register to Shuffle SaaS"
if (isCloud) {
document.title = "Register to Shuffle SaaS"
} else {
document.title = "Register to Shuffle"
}
}
}