diff --git a/web-wallet/CHANGELOG.md b/web-wallet/CHANGELOG.md
index 5dd23931e7..bcced32da1 100644
--- a/web-wallet/CHANGELOG.md
+++ b/web-wallet/CHANGELOG.md
@@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix UI not scrolling to top after wizard and sub-route navigation [#2997]
- Fix edge case in Dusk to Lux conversion [#3032]
+- Fix inconsistent terminology usage for "Mnemonic Phrase" [#3035]
## [0.8.0] - 2024-11-19
@@ -367,6 +368,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#3010]: https://github.com/dusk-network/rusk/issues/3010
[#3028]: https://github.com/dusk-network/rusk/issues/3028
[#3032]: https://github.com/dusk-network/rusk/issues/3032
+[#3035]: https://github.com/dusk-network/rusk/issues/3035
diff --git a/web-wallet/src/lib/components/ExistingWalletNotice/ExistingWalletNotice.svelte b/web-wallet/src/lib/components/ExistingWalletNotice/ExistingWalletNotice.svelte
index 8856305972..408d84ddbc 100644
--- a/web-wallet/src/lib/components/ExistingWalletNotice/ExistingWalletNotice.svelte
+++ b/web-wallet/src/lib/components/ExistingWalletNotice/ExistingWalletNotice.svelte
@@ -12,8 +12,8 @@
Initializing a new wallet will replace your existing local wallet cache,
erasing any stored data. Ensure you have securely backed up your current
- wallet's seed phrase to prevent loss. Proceeding without a backup can lead
- to irreversible loss of access to your assets.
+ wallet's mnemonic phrase to prevent loss. Proceeding without a backup can
+ lead to irreversible loss of access to your assets.
`;
-exports[`Create > should render the \`Securely store your seed phrase!\` agreement step after the ToS 1`] = `
+exports[`Create > should render the \`Securely store your mnemonic phrase!\` agreement step after the ToS 1`] = `
@@ -2977,7 +2977,7 @@ exports[`Create > should render the \`Securely store your seed phrase!\` agreeme
- Securely store your seed phrase!
+ Securely store your mnemonic phrase!
@@ -3002,7 +3002,7 @@ exports[`Create > should render the \`Securely store your seed phrase!\` agreeme
class="dusk-agreement__label"
for="dusk-checkbox-16"
>
- I understand that without my seed phrase I cannot access my wallet and its assets.
+ I understand that without my mnemonic phrase I cannot access my wallet and its assets.
@@ -3170,8 +3170,8 @@ exports[`Create > should render the Existing Wallet notice step of the Create fl
Initializing a new wallet will replace your existing local wallet cache,
erasing any stored data. Ensure you have securely backed up your current
- wallet's seed phrase to prevent loss. Proceeding without a backup can lead
- to irreversible loss of access to your assets.
+ wallet's mnemonic phrase to prevent loss. Proceeding without a backup can
+ lead to irreversible loss of access to your assets.
{
expect(container.firstChild).toMatchSnapshot();
});
- it("should render the `Securely store your seed phrase!` agreement step after the ToS", async () => {
+ it("should render the `Securely store your mnemonic phrase!` agreement step after the ToS", async () => {
const { container, getByRole } = render(Create);
const mathRandomSpy = vi.spyOn(Math, "random").mockReturnValue(42);
@@ -116,7 +116,7 @@ describe("Create", async () => {
mathRandomSpy.mockRestore();
});
- it("should not allow the user proceed unless both agreement checks are selected on the `Securely store your seed phrase!` step", async () => {
+ it("should not allow the user proceed unless both agreement checks are selected on the `Securely store your mnemonic phrase!` step", async () => {
const { getByRole, getAllByRole } = render(Create);
await fireEvent.click(getByRole("button", { name: "Accept" }));
diff --git a/web-wallet/src/routes/(welcome)/setup/restore/__tests__/__snapshots__/page.spec.js.snap b/web-wallet/src/routes/(welcome)/setup/restore/__tests__/__snapshots__/page.spec.js.snap
index 671bf2b535..cc60846e1d 100644
--- a/web-wallet/src/routes/(welcome)/setup/restore/__tests__/__snapshots__/page.spec.js.snap
+++ b/web-wallet/src/routes/(welcome)/setup/restore/__tests__/__snapshots__/page.spec.js.snap
@@ -44,8 +44,8 @@ exports[`Restore > should render the Existing Wallet notice step of the Restore
Initializing a new wallet will replace your existing local wallet cache,
erasing any stored data. Ensure you have securely backed up your current
- wallet's seed phrase to prevent loss. Proceeding without a backup can lead
- to irreversible loss of access to your assets.
+ wallet's mnemonic phrase to prevent loss. Proceeding without a backup can
+ lead to irreversible loss of access to your assets.