Skip to content

Commit

Permalink
Merge pull request #2457 from kaloudis/negative-icon-inbound-fees
Browse files Browse the repository at this point in the history
[bug fix] SetFeesForm: allow iOS users to input negative amounts for inbound fees
  • Loading branch information
kaloudis authored Oct 7, 2024
2 parents e229c67 + 47c690d commit 08f50f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/SetFeesForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export default class SetFeesForm extends React.Component<
)} (${localeString('general.sats')})`}
</Text>
<TextInput
keyboardType="numeric"
keyboardType="decimal"
placeholder={baseFeeInbound || '1'}
value={newBaseFeeInbound}
onChangeText={(text: string) =>
Expand All @@ -212,7 +212,7 @@ export default class SetFeesForm extends React.Component<
)} (${localeString('general.percentage')})`}
</Text>
<TextInput
keyboardType="numeric"
keyboardType="decimal"
placeholder={feeRateInbound || '1'}
value={newFeeRateInbound}
onChangeText={(text: string) =>
Expand Down

0 comments on commit 08f50f4

Please sign in to comment.