From e9c5233405f34291bdc09a0ec2c8b9b6c7124299 Mon Sep 17 00:00:00 2001 From: MytsV Date: Thu, 7 Nov 2024 15:23:31 +0200 Subject: [PATCH] Fix the bug with x509 authentication failing with single account for identity --- src/component-library/pages/legacy/Login/Login.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/component-library/pages/legacy/Login/Login.tsx b/src/component-library/pages/legacy/Login/Login.tsx index afe8b11d0..e2f4f6be8 100644 --- a/src/component-library/pages/legacy/Login/Login.tsx +++ b/src/component-library/pages/legacy/Login/Login.tsx @@ -142,7 +142,7 @@ export const Login = ({ setLastAuthMethod('x509'); handleAuthViewModel(x509AuthViewModel); - handleX509Session(x509AuthViewModel, account || '', vo.shortName); + handleX509Session(x509AuthViewModel, x509AuthViewModel.rucioAccount, vo.shortName); }; const submitUserPass = async (account: string | undefined) => {