Skip to content

Commit

Permalink
bug(#511): Fix wallet creation not showing all seed words
Browse files Browse the repository at this point in the history
  • Loading branch information
ChewingGlass committed Oct 16, 2023
1 parent 06af507 commit 4775c02
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@ SPEC CHECKSUMS:
FBLazyVector: f1897022b53abf1469d6ad692ee2c69f57d967f3
FBReactNativeSpec: 627fd07f1b9d498c9fa572e76d7f1a6b1ee9a444
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
glog: 791fe035093b84822da7f0870421a25839ca7870
helium-react-native-sdk: 17b612b2dacebc8f10c18ba5611f200a81c940f9
hermes-engine: 0784cadad14b011580615c496f77e0ae112eed75
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
Expand All @@ -886,7 +886,7 @@ SPEC CHECKSUMS:
MapboxMobileEvents: de50b3a4de180dd129c326e09cd12c8adaaa46d6
MultiplatformBleAdapter: 5a6a897b006764392f9cef785e4360f54fb9477d
OneSignalXCFramework: 81ceac017a290f23793443323090cfbe888f74ea
RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
RCT-Folly: 85766c3226c7ec638f05ad7cb3cf6a268d6c4241
RCTRequired: bd6045fbd511da5efe6db89eecb21e4e36bd7cbf
RCTTypeSafety: c06d9f906faa69dd1c88223204c3a24767725fd8
React: b9ea33557ef1372af247f95d110fbdea114ed3b2
Expand Down Expand Up @@ -957,4 +957,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: 5b4d3c6d9c5a303c84f0b5427958ba4a25671e76

COCOAPODS: 1.12.1
COCOAPODS: 1.11.3
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 4775c02

Please sign in to comment.