We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5b8a086 + 022d827 commit 0e4d589Copy full SHA for 0e4d589
src/components/input-group/index.tsx
@@ -93,6 +93,7 @@ export default ({
93
{type === 'number' ? (
94
<NumberFormat
95
inputMode='numeric'
96
+ data-lpignore='true'
97
className={'custom-input'}
98
thousandSeparator={' '}
99
id={id}
src/pages/public/configure/index.tsx
@@ -156,11 +156,6 @@ function ConfigurePage(): JSX.Element {
156
errors.localBalance = `Total channel capacity is ${numberWithSpaces(
157
product.max_channel_size
158
)} sats`;
159
- } else if (Number(localBalance) < product.min_channel_size) {
160
- // TODO remove this check if the min spending cap check is removed from API
161
- errors.localBalance = `Minimum spending capacity is ${numberWithSpaces(
162
- product.min_channel_size
163
- )} sats`;
164
}
165
166
0 commit comments