Skip to content

Commit

Permalink
Merge pull request #290 from fukaoi/hotfix/typo
Browse files Browse the repository at this point in the history
Hotfix/typo
  • Loading branch information
fukaoi authored Oct 1, 2024
2 parents d6b4e13 + 22496be commit a9ca702
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions app/components/number-input/DecimalsInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,16 @@ const NumberInput = React.forwardRef(function CustomNumberInput(
const description = `The value of this setting specifies the number of decimal points in the token.
Please refer to the example below.`;
const example = `
0 decimals: 1000, 1
1 decimals: 1000.0, 0.1
2 decimals: 1000.00, 0.01
3 decimals: 1000.000, 0.001
4 decimals: 1000.0000, 0.0001
5 decimals: 1000.00000, 0.00001
7 decimals: 1000.000000, 0.000001
8 decimals: 1000.0000000, 0.0000001
9 decimals: 1000.00000000, 0.00000001
0 decimals: 1000, 1
1 decimals: 1000.0, 0.1
2 decimals: 1000.00, 0.01
3 decimals: 1000.000, 0.001
4 decimals: 1000.0000, 0.0001
5 decimals: 1000.00000, 0.00001
6 decimals: 1000.000000, 0.000001
7 decimals: 1000.0000000, 0.0000001
8 decimals: 1000.00000000, 0.00000001
9 decimals: 1000.000000000, 0.000000001
`;
return (
<>
Expand Down

0 comments on commit a9ca702

Please sign in to comment.