diff --git a/package.json b/package.json index 9574f951..d75e73fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@gnosis.pm/safe-react-components", - "version": "0.8.4", + "version": "0.8.5", "description": "Gnosis UI components", "main": "dist/index.min.js", "typings": "dist/index.d.ts", diff --git a/src/ethereum/EthHashInfo/index.tsx b/src/ethereum/EthHashInfo/index.tsx index e4fecbf5..547bee7e 100644 --- a/src/ethereum/EthHashInfo/index.tsx +++ b/src/ethereum/EthHashInfo/index.tsx @@ -60,13 +60,13 @@ type Props = { type ShortNameProps = | { - shouldShowShortName: true; + shouldShowShortName: boolean; shouldCopyShortName?: boolean; shortName: string; } | { shouldShowShortName?: boolean; - shouldCopyShortName: true; + shouldCopyShortName: boolean; shortName: string; } | {