Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/pages/btc/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ export default function BitcoinWallet() {
defaultValue={0}
value={btcAmount}
allowNegative={false}
customInput={TextField}
customInput={TextField as React.ComponentType<any>}
valueIsNumericString
label="Amount (BTC)"
fullWidth
Expand Down
2 changes: 1 addition & 1 deletion src/pages/dgb/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@ export default function DigibyteWallet() {
defaultValue={0}
value={dgbAmount}
allowNegative={false}
customInput={TextField}
customInput={TextField as React.ComponentType<any>}
valueIsNumericString
label="Amount (DGB)"
fullWidth
Expand Down
2 changes: 1 addition & 1 deletion src/pages/doge/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ export default function DogecoinWallet() {
defaultValue={0}
value={dogeAmount}
allowNegative={false}
customInput={TextField}
customInput={TextField as React.ComponentType<any>}
valueIsNumericString
label="Amount (DOGE)"
fullWidth
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ltc/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@ export default function LitecoinWallet() {
defaultValue={0}
value={ltcAmount}
allowNegative={false}
customInput={TextField}
customInput={TextField as React.ComponentType<any>}
valueIsNumericString
label="Amount (LTC)"
fullWidth
Expand Down
2 changes: 1 addition & 1 deletion src/pages/qort/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3382,7 +3382,7 @@ export default function QortalWallet() {
defaultValue={0}
value={qortAmount ?? EMPTY_STRING}
allowNegative={false}
customInput={TextField}
customInput={TextField as React.ComponentType<any>}
valueIsNumericString
label={
t('core:amount', { postProcess: 'capitalizeAll' }) + '(QORT)'
Expand Down
2 changes: 1 addition & 1 deletion src/pages/rvn/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ export default function RavencoinWallet() {
defaultValue={0}
value={rvnAmount}
allowNegative={false}
customInput={TextField}
customInput={TextField as React.ComponentType<any>}
valueIsNumericString
label="Amount (RVN)"
fullWidth
Expand Down