mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
Merge pull request #3234 from BlueWallet/Cannot-read-seed-words-for-vault-key---mostly-blank-#3232-
FIX: Cannot read seed words for vault key - mostly blank #3232
This commit is contained in:
commit
26f557c4af
@ -519,17 +519,21 @@ const WalletsAddMultisigStep2 = () => {
|
||||
const entriesObject = entries.entries();
|
||||
for (const [index, secret] of entriesObject) {
|
||||
if (entries.length > 1) {
|
||||
const text = `${index + 1}. ${secret} `;
|
||||
component.push(
|
||||
<View style={[styles.word, stylesHook.word]} key={`${secret}${index}`}>
|
||||
<Text style={[styles.wordText, stylesHook.wordText]}>
|
||||
{index + 1}. {secret}
|
||||
<Text style={[styles.wordText, stylesHook.wordText]} textBreakStrategy="simple">
|
||||
{text}
|
||||
</Text>
|
||||
</View>,
|
||||
);
|
||||
} else {
|
||||
const text = `${secret} `;
|
||||
component.push(
|
||||
<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>,
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user