diff --git a/src/routes/safe/components/Transactions/TxList/hooks/useTransactionType.ts b/src/routes/safe/components/Transactions/TxList/hooks/useTransactionType.ts index 7d15b560..ca04efbc 100644 --- a/src/routes/safe/components/Transactions/TxList/hooks/useTransactionType.ts +++ b/src/routes/safe/components/Transactions/TxList/hooks/useTransactionType.ts @@ -15,7 +15,7 @@ export type TxTypeProps = { } export const useTransactionType = (tx: Transaction): TxTypeProps => { - const [type, setType] = useState({ icon: CustomTxIcon, text: 'Custom transaction' }) + const [type, setType] = useState({ 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 } }