diff --git a/automation/tests/settingsTests.test.js b/automation/tests/settingsTests.test.js index e8dc51dac..9311872ba 100644 --- a/automation/tests/settingsTests.test.js +++ b/automation/tests/settingsTests.test.js @@ -85,7 +85,7 @@ test.describe('Settings tests', () => { await settingsPage.clickOnNicknameContinueButton(); const toastMessage = await registrationPage.getToastMessage(); - expect(toastMessage).toBe('Key Pair saved'); + expect(toastMessage).toBe('Key pair saved'); // key pair was successfully restored, so we increment the index await settingsPage.incrementIndex(); @@ -115,7 +115,7 @@ test.describe('Settings tests', () => { await settingsPage.clickOnNicknameContinueButton(); const toastMessage = await registrationPage.getToastMessage(); - expect(toastMessage).toBe('Key Pair saved'); + expect(toastMessage).toBe('Key pair saved'); // key pair was successfully restored, so we increment the index await settingsPage.incrementIndex(); diff --git a/front-end/src/renderer/pages/RestoreKey/RestoreKey.vue b/front-end/src/renderer/pages/RestoreKey/RestoreKey.vue index a70b9cd8f..027fda47e 100644 --- a/front-end/src/renderer/pages/RestoreKey/RestoreKey.vue +++ b/front-end/src/renderer/pages/RestoreKey/RestoreKey.vue @@ -162,7 +162,7 @@ const handleSaveKey = async () => { user.recoveryPhrase = null; await user.refetchUserState(); - toast.success('Key Pair saved'); + toast.success('Key pair saved'); router.push({ name: 'settingsKeys' }); } catch (error) { toast.error(getErrorMessage(error, 'Failed to store private key')); @@ -292,7 +292,7 @@ watch(step, async newStep => { v-focus-first-input >

Provide Index of Key

-

Please enter the index of the key

+

Enter the index of the private key you want to generate from the recovery phrase

@@ -329,8 +329,8 @@ watch(step, async newStep => { @submit.prevent="handleSaveKey" v-focus-first-input > -

Enter nickname

-

Please enter your nickname (optional)

+

Enter Key Nickname

+

You can optionally enter a nickname for the private key generated at {{ index }} to reference it more easily later