0
Fork 0
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:
Gao Sun 2023-10-18 17:27:41 +08:00
parent 4ae571eace
commit b8c2a25d4f
No known key found for this signature in database
GPG key ID: 13EBE123E4773688
3 changed files with 3 additions and 3 deletions

View file

@ -168,7 +168,7 @@ describe('applications', () => {
// Add and remove redirect uri // Add and remove redirect uri
await expect(redirectUriFiled).toClick('div[class$=multilineInput]>button>span', { await expect(redirectUriFiled).toClick('div[class$=multilineInput]>button>span', {
text: 'Add Another', text: 'Add another',
}); });
// Wait for the new redirect uri field // Wait for the new redirect uri field

View file

@ -57,7 +57,7 @@ export const expectToAddSignInMethod = async (page: Page, method: string, isAddA
// Click Add another // Click Add another
await expect(signInMethodsField).toClick('button span', { 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 // Wait for the dropdown to be rendered in the correct position

View file

@ -23,7 +23,7 @@ const sign_up_and_sign_in = {
sign_in_identifier_and_auth: 'Identifier and authentication settings for sign-in', sign_in_identifier_and_auth: 'Identifier and authentication settings for sign-in',
description: description:
'Users can sign in using any of the options available. Adjust the layout by drag and dropping below options.', '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', password_auth: 'Password',
verification_code_auth: 'Verification code', verification_code_auth: 'Verification code',
auth_swap_tip: 'Swap the options below to determine which appears first in the flow.', auth_swap_tip: 'Swap the options below to determine which appears first in the flow.',