From 155446adbe3e8780c94231c9a92c0ba259100598 Mon Sep 17 00:00:00 2001 From: Diogo Soares Date: Thu, 28 Oct 2021 12:41:56 +0200 Subject: [PATCH 1/2] Fix EthHashInfo props to receive always the two flags values --- src/ethereum/EthHashInfo/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } | { From d0c457d9e1744a596d400136d8888993d2e4c0af Mon Sep 17 00:00:00 2001 From: Diogo Soares Date: Thu, 28 Oct 2021 12:48:25 +0200 Subject: [PATCH 2/2] 0.8.5 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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",