Tx list v2 - design/wording follow ups (#1969)

* Rename custom transaction to custom interaction

* fix no transaction img size
This commit is contained in:
Mati Dastugue 2021-03-09 13:02:26 -03:00 committed by GitHub
parent 5ded9ee9e7
commit 4ee5fe57b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ export type TxTypeProps = {
}
export const useTransactionType = (tx: Transaction): TxTypeProps => {
const [type, setType] = useState<TxTypeProps>({ icon: CustomTxIcon, text: 'Custom transaction' })
const [type, setType] = useState<TxTypeProps>({ icon: CustomTxIcon, text: 'Contract interaction' })
const safeAddress = useSelector(safeParamAddressFromStateSelector)
useEffect(() => {
@ -62,7 +62,7 @@ export const useTransactionType = (tx: Transaction): TxTypeProps => {
break
}
setType({ icon: CustomTxIcon, text: 'Custom transaction' })
setType({ icon: CustomTxIcon, text: 'Contract interaction' })
break
}
}