mirror of
https://github.com/logto-io/logto.git
synced 2025-02-17 22:04:19 -05:00
refactor(phrases): fix case
This commit is contained in:
parent
4ae571eace
commit
b8c2a25d4f
3 changed files with 3 additions and 3 deletions
|
@ -168,7 +168,7 @@ describe('applications', () => {
|
|||
|
||||
// Add and remove redirect uri
|
||||
await expect(redirectUriFiled).toClick('div[class$=multilineInput]>button>span', {
|
||||
text: 'Add Another',
|
||||
text: 'Add another',
|
||||
});
|
||||
|
||||
// Wait for the new redirect uri field
|
||||
|
|
|
@ -57,7 +57,7 @@ export const expectToAddSignInMethod = async (page: Page, method: string, isAddA
|
|||
|
||||
// Click Add another
|
||||
await expect(signInMethodsField).toClick('button span', {
|
||||
text: isAddAnother ? 'Add Another' : 'Add Sign-in Method',
|
||||
text: isAddAnother ? 'Add another' : 'Add sign-in method',
|
||||
});
|
||||
|
||||
// Wait for the dropdown to be rendered in the correct position
|
||||
|
|
|
@ -23,7 +23,7 @@ const sign_up_and_sign_in = {
|
|||
sign_in_identifier_and_auth: 'Identifier and authentication settings for sign-in',
|
||||
description:
|
||||
'Users can sign in using any of the options available. Adjust the layout by drag and dropping below options.',
|
||||
add_sign_in_method: 'Add Sign-in Method',
|
||||
add_sign_in_method: 'Add sign-in method',
|
||||
password_auth: 'Password',
|
||||
verification_code_auth: 'Verification code',
|
||||
auth_swap_tip: 'Swap the options below to determine which appears first in the flow.',
|
||||
|
|
Loading…
Add table
Reference in a new issue