-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NEVISACCESSAPP-5966: added password authenticator with custom policy #41
NEVISACCESSAPP-5966: added password authenticator with custom policy #41
Conversation
daniel-toth-leeder
commented
Jul 17, 2024
- Changed inputs of PinScreen to be secure.
- Fixed iOS only issue of keyboard hiding buttons.
- Changed inputs of PinScreen to be secure. - Fixed iOS only issue of keyboard hiding buttons.
d25f666
to
7e13643
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's discuss my one real comment (the other one is a compliment) and let's decide whether it warrants a change or not, I'm not choosing a review result until that!
await startPinChange(eligibleAccounts); | ||
await startPinChange(eligibleAccounts.at(0)!); | ||
} else { | ||
// in case that there are multiple eligible accounts then we have to show the account selection screen | ||
return selectAccount(OperationType.pinChange); | ||
} | ||
|
||
async function startPinChange(accounts: Array<Account>) { | ||
async function startPinChange(account: Account) { | ||
const client = ClientProvider.getInstance().client; | ||
client?.operations.pinChange | ||
.username(accounts.at(0)!.username) | ||
.username(account.username) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍🏻 Great refactor!
7e13643
to
7791359
Compare
7791359
to
cc4dcce
Compare