mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-15 13:31:40 +00:00
Login now shows "beta" when playing on beta (#4973)
This commit is contained in:
parent
757fe1a17c
commit
22f4e747ab
@ -81,7 +81,11 @@ export default class LoginFormUiHandler extends FormModalUiHandler {
|
||||
}
|
||||
|
||||
override getModalTitle(_config?: ModalConfig): string {
|
||||
return i18next.t("menu:login");
|
||||
let key = "menu:login";
|
||||
if (import.meta.env.VITE_SERVER_URL === "https://apibeta.pokerogue.net") {
|
||||
key = "menu:loginBeta";
|
||||
}
|
||||
return i18next.t(key);
|
||||
}
|
||||
|
||||
override getWidth(_config?: ModalConfig): number {
|
||||
|
Loading…
x
Reference in New Issue
Block a user