1
0
forked from baron/baron-sso

code check 오류 수정

This commit is contained in:
2026-03-24 15:53:10 +09:00
parent 839fabd056
commit 5a768d938a
4 changed files with 2 additions and 4 deletions

View File

@@ -159,7 +159,6 @@ resend_wait = "You can resend in {time}."
short_code_help = "You can also sign in with the last 2 letters and 6 digits from the link you received."
[msg.userfront.login.password]
caps_lock_on = "Caps Lock is on."
failed = "Sign-in failed: {error}"
missing_credentials = "Enter both your email or phone number and your password."

View File

@@ -158,7 +158,6 @@ resend_wait = "재발송은 {time} 후 가능합니다."
short_code_help = "링크로 받은 값의 뒤 문자 2개와 숫자 6자리를 입력하셔도 로그인 할 수 있습니다."
[msg.userfront.login.password]
caps_lock_on = "Caps Lock이 켜져 있습니다."
failed = "로그인 실패: {error}"
missing_credentials = "이메일(또는 전화번호)와 비밀번호를 모두 입력해주세요."

View File

@@ -158,7 +158,6 @@ resend_wait = ""
short_code_help = ""
[msg.userfront.login.password]
caps_lock_on = ""
failed = ""
missing_credentials = ""

View File

@@ -687,7 +687,8 @@ class _DashboardScreenState extends ConsumerState<DashboardScreen> {
profile?.email ??
profile?.phone ??
tr('ui.userfront.profile.user_fallback', fallback: 'User');
final departmentValue = profile?.tenant?.name ?? profile?.department ?? '';
final departmentValue =
profile?.tenant?.name ?? profile?.department ?? '';
final department = departmentValue.isNotEmpty
? departmentValue
: tr('ui.userfront.profile.department_empty');