Skip to content

Commit

Permalink
bug(#511): Fix wallet creation not showing all seed words (#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChewingGlass authored Oct 16, 2023
1 parent 06af507 commit 68e67c9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/RevealWords.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ const RevealWords = ({ mnemonic, onDone, ListHeaderComponent }: Props) => {
{/* @ts-ignore */}
<FlatList
numColumns={2}
initialNumToRender={mnemonic.length}
columnWrapperStyle={{
flexDirection: 'row',
}}
Expand All @@ -134,6 +135,7 @@ const RevealWords = ({ mnemonic, onDone, ListHeaderComponent }: Props) => {
renderItem={renderItem}
contentContainerStyle={contentContainerStyle}
scrollEnabled
removeClippedSubviews={false}
/>
</ReAnimatedBox>
)
Expand Down

0 comments on commit 68e67c9

Please sign in to comment.