mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 15:20:55 +01:00
FIX: Cannot read seed words for vault key - mostly blank #3232
This commit is contained in:
parent
3492f46cd3
commit
b2cb63f63c
1 changed files with 7 additions and 3 deletions
|
@ -519,17 +519,21 @@ const WalletsAddMultisigStep2 = () => {
|
||||||
const entriesObject = entries.entries();
|
const entriesObject = entries.entries();
|
||||||
for (const [index, secret] of entriesObject) {
|
for (const [index, secret] of entriesObject) {
|
||||||
if (entries.length > 1) {
|
if (entries.length > 1) {
|
||||||
|
const text = `${index + 1}. ${secret} `;
|
||||||
component.push(
|
component.push(
|
||||||
<View style={[styles.word, stylesHook.word]} key={`${secret}${index}`}>
|
<View style={[styles.word, stylesHook.word]} key={`${secret}${index}`}>
|
||||||
<Text style={[styles.wordText, stylesHook.wordText]}>
|
<Text style={[styles.wordText, stylesHook.wordText]} textBreakStrategy="simple">
|
||||||
{index + 1}. {secret}
|
{text}
|
||||||
</Text>
|
</Text>
|
||||||
</View>,
|
</View>,
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
const text = `${secret} `;
|
||||||
component.push(
|
component.push(
|
||||||
<View style={[styles.word, stylesHook.word]} key={`${secret}${index}`}>
|
<View style={[styles.word, stylesHook.word]} key={`${secret}${index}`}>
|
||||||
<Text style={[styles.wordText, stylesHook.wordText]}>{secret}</Text>
|
<Text style={[styles.wordText, stylesHook.wordText]} textBreakStrategy="simple">
|
||||||
|
{text}
|
||||||
|
</Text>
|
||||||
</View>,
|
</View>,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue