From c5d735722b385491b0dc0948c98ad20fc2bd14eb Mon Sep 17 00:00:00 2001 From: Elin Fokine Date: Wed, 26 Aug 2026 14:45:30 +0200 Subject: [PATCH] Update text for login buttons in sample project. --- samples/Standalone.MvcSample/Program.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/samples/Standalone.MvcSample/Program.cs b/samples/Standalone.MvcSample/Program.cs index 5efa57cb..292c3a46 100644 --- a/samples/Standalone.MvcSample/Program.cs +++ b/samples/Standalone.MvcSample/Program.cs @@ -99,22 +99,22 @@ .AddCookie() .AddBankIdAuth(bankId => { - bankId.AddSameDevice(BankIdAuthDefaults.SameDeviceAuthenticationScheme, "BankID (SameDevice)", options => { }); - bankId.AddOtherDevice(BankIdAuthDefaults.OtherDeviceAuthenticationScheme, "BankID (OtherDevice)", options => { }); + bankId.AddSameDevice(BankIdAuthDefaults.SameDeviceAuthenticationScheme, "BankID", options => { }); + bankId.AddOtherDevice(BankIdAuthDefaults.OtherDeviceAuthenticationScheme, "BankID with QR Code", options => { }); }); // Add Active Login - Sign services.AddBankIdSign(bankId => { - bankId.AddSameDevice(BankIdSignDefaults.SameDeviceConfigKey, "BankID (SameDevice)", options => { }); - bankId.AddOtherDevice(BankIdSignDefaults.OtherDeviceConfigKey, "BankID (OtherDevice)", options => { }); + bankId.AddSameDevice(BankIdSignDefaults.SameDeviceConfigKey, "BankID", options => { }); + bankId.AddOtherDevice(BankIdSignDefaults.OtherDeviceConfigKey, "BankID with QR Code", options => { }); }); // Add Active Login - Payment services.AddBankIdPayment(bankId => { - bankId.AddSameDevice(BankIdPaymentDefaults.SameDeviceConfigKey, "BankID (SameDevice)", options => { }); - bankId.AddOtherDevice(BankIdPaymentDefaults.OtherDeviceConfigKey, "BankID (OtherDevice)", options => { }); + bankId.AddSameDevice(BankIdPaymentDefaults.SameDeviceConfigKey, "BankID", options => { }); + bankId.AddOtherDevice(BankIdPaymentDefaults.OtherDeviceConfigKey, "BankID with QR Code", options => { }); }); // Add Authorization