Skip to content

Commit 8ec46e3

Browse files
fix(issuer): correct decimal places on input
1 parent 601160c commit 8ec46e3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • packages/polymath-issuer/src/pages/sto/components/ConfigureSTOForm/forms/USDTieredSTO

packages/polymath-issuer/src/pages/sto/components/ConfigureSTOForm/forms/USDTieredSTO/InvestmentTiers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ export default class InvestmentTiers extends React.Component<Props, State> {
239239
<FormItem.Input
240240
FormikComponent={Field}
241241
component={NumberInput}
242-
min={0.001}
243-
maxDecimals={3}
242+
min={0.01}
243+
maxDecimals={2}
244244
placeholder="Enter amount"
245245
unit="USD"
246246
useBigNumbers

0 commit comments

Comments
 (0)