{
+ onKeyDown={(e) => {
if (e.keyCode !== 9) {
setSelectedEntry(null)
}
diff --git a/src/routes/safe/components/Balances/SendModal/screens/SendCustomTx/index.jsx b/src/routes/safe/components/Balances/SendModal/screens/SendCustomTx/index.jsx
index 90e40b1e..2039cfc3 100644
--- a/src/routes/safe/components/Balances/SendModal/screens/SendCustomTx/index.jsx
+++ b/src/routes/safe/components/Balances/SendModal/screens/SendCustomTx/index.jsx
@@ -36,7 +36,7 @@ import { sm } from '~/theme/variables'
type Props = {
initialValues: Object,
onClose: () => void,
- onNext: any => void,
+ onNext: (any) => void,
recipientAddress: string,
}
@@ -103,7 +103,7 @@ const SendCustomTx = ({ initialValues, onClose, onNext, recipientAddress }: Prop
shouldDisableSubmitButton = !selectedEntry.address
}
- const handleScan = value => {
+ const handleScan = (value) => {
let scannedAddress = value
if (scannedAddress.startsWith('ethereum:')) {
@@ -128,7 +128,7 @@ const SendCustomTx = ({ initialValues, onClose, onNext, recipientAddress }: Prop
{selectedEntry && selectedEntry.address ? (
{
+ onKeyDown={(e) => {
if (e.keyCode !== 9) {
setSelectedEntry(null)
}
diff --git a/src/routes/safe/components/Balances/SendModal/screens/SendFunds/TokenSelectField/index.jsx b/src/routes/safe/components/Balances/SendModal/screens/SendFunds/TokenSelectField/index.jsx
index 5d629c87..56af0967 100644
--- a/src/routes/safe/components/Balances/SendModal/screens/SendFunds/TokenSelectField/index.jsx
+++ b/src/routes/safe/components/Balances/SendModal/screens/SendFunds/TokenSelectField/index.jsx
@@ -64,10 +64,10 @@ const TokenSelectField = ({ classes, initialValue, isValid, tokens }: SelectFiel
displayEmpty
initialValue={initialValue}
name="token"
- renderValue={tokenAddress =>
}
+ renderValue={(tokenAddress) =>
}
validate={required}
>
- {tokens.map(token => (
+ {tokens.map((token) => (
- {currenciesListFiltered.map(currencyName => (
+ {currenciesListFiltered.map((currencyName) => (