forked from baron/baron-sso
code check 오류 수정
This commit is contained in:
@@ -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."
|
||||
|
||||
|
||||
@@ -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 = "이메일(또는 전화번호)와 비밀번호를 모두 입력해주세요."
|
||||
|
||||
|
||||
@@ -158,7 +158,6 @@ resend_wait = ""
|
||||
short_code_help = ""
|
||||
|
||||
[msg.userfront.login.password]
|
||||
caps_lock_on = ""
|
||||
failed = ""
|
||||
missing_credentials = ""
|
||||
|
||||
|
||||
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user