Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/components/modals/ContactListModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export function ContactListModal({ bridge, contactType, contactName }: Props) {
return (
<ListModal
bridge={bridge}
autoFocus
title={sprintf(lstrings.transaction_details_person_input, contactType)}
label={contactType}
searchIcon={false}
Expand Down
2 changes: 2 additions & 0 deletions src/components/scenes/Fio/FioRequestListScene.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,7 @@ class FioRequestList extends React.Component<Props, LocalState> {
renderItem={this.renderPending}
renderSectionHeader={this.headerRowUsingTitle}
sections={this.pendingRequestHeaders()}
stickySectionHeadersEnabled={false}
onEndReached={this.pendingLazyLoad}
onEndReachedThreshold={SCROLL_THRESHOLD}
/>
Expand All @@ -556,6 +557,7 @@ class FioRequestList extends React.Component<Props, LocalState> {
renderItem={this.renderSent}
renderSectionHeader={this.headerRowUsingTitle}
sections={this.sentRequestHeaders()}
stickySectionHeadersEnabled={false}
onEndReached={this.sentLazyLoad}
onEndReachedThreshold={SCROLL_THRESHOLD}
/>
Expand Down
1 change: 1 addition & 0 deletions src/components/scenes/SpendingLimitsScene.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ export const SpendingLimitsScene = (props: Props) => {
</View>

<FilledTextInput
numeric
disabled={!transactionIsEnabled}
value={transactionAmount}
onChangeText={setTransactionAmount}
Expand Down