diff --git a/src/components/AddressInfo/index.tsx b/src/components/AddressInfo/index.tsx index ed3b0e26..1eb70f6f 100644 --- a/src/components/AddressInfo/index.tsx +++ b/src/components/AddressInfo/index.tsx @@ -39,7 +39,7 @@ const StyledBlock = styled(Block)` interface Props { safeName?: string safeAddress: string - ethBalance?: number | string + ethBalance?: string } const AddressInfo = ({ ethBalance, safeAddress, safeName }: Props): JSX.Element => { diff --git a/src/routes/safe/components/Apps/confirmTransactions.tsx b/src/routes/safe/components/Apps/confirmTransactions.tsx index 4cf1a113..f5ad686c 100644 --- a/src/routes/safe/components/Apps/confirmTransactions.tsx +++ b/src/routes/safe/components/Apps/confirmTransactions.tsx @@ -74,7 +74,7 @@ const isTxValid = (t: SafeAppTx): boolean => { const confirmTransactions = ( safeAddress: string, safeName: string, - ethBalance: number | string, + ethBalance: string, nameApp: string, iconApp: string, txs: Array, diff --git a/src/routes/safe/store/models/safe.ts b/src/routes/safe/store/models/safe.ts index 8699994b..9cceb7e1 100644 --- a/src/routes/safe/store/models/safe.ts +++ b/src/routes/safe/store/models/safe.ts @@ -9,7 +9,7 @@ export type SafeRecordProps = { name: string address: string threshold: number - ethBalance: number | string + ethBalance: string owners: List<{ name: string; address: string }> modules: List<[string, string]> | null activeTokens: Set