diff --git a/nym-wallet/src/pages/auth/components/heading.tsx b/nym-wallet/src/pages/auth/components/heading.tsx
index 210379d222..32f74d26b5 100644
--- a/nym-wallet/src/pages/auth/components/heading.tsx
+++ b/nym-wallet/src/pages/auth/components/heading.tsx
@@ -2,11 +2,11 @@ import React from 'react';
import { Typography } from '@mui/material';
export const Title = ({ title }: { title: string }) => (
- {title}
+ {title}
);
export const Subtitle = ({ subtitle }: { subtitle: string }) => (
- {subtitle}
+ {subtitle}
);
export const SubtitleSlick = ({ subtitle }: { subtitle: string }) => (
diff --git a/nym-wallet/src/pages/auth/components/word-tiles.tsx b/nym-wallet/src/pages/auth/components/word-tiles.tsx
index 6c71f0fb08..c88961cc9b 100644
--- a/nym-wallet/src/pages/auth/components/word-tiles.tsx
+++ b/nym-wallet/src/pages/auth/components/word-tiles.tsx
@@ -53,7 +53,7 @@ export const WordTiles = ({
return (
{mnemonicWords.map(({ name, index, disabled }) => (
- onClick?.({ name, index })}>
+ onClick?.({ name, index })} data-testid="mnemonicWordTile">
- {mnemonicWord.index}.
+ {mnemonicWord.index}.
);
diff --git a/nym-wallet/src/pages/auth/pages/confirm-mnemonic.tsx b/nym-wallet/src/pages/auth/pages/confirm-mnemonic.tsx
index 0460dfa71b..aa2cb67404 100644
--- a/nym-wallet/src/pages/auth/pages/confirm-mnemonic.tsx
+++ b/nym-wallet/src/pages/auth/pages/confirm-mnemonic.tsx
@@ -20,6 +20,7 @@ export const ConfirmMnemonic = () => {
setLocalMnemonic(mnc)} error={error} />