Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit a57de15

Browse files
authored
Fix EthHashInfo props to receive always the two flags values (#161)
* Fix EthHashInfo props to receive always the two flags values * 0.8.5
1 parent ee8e15f commit a57de15

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gnosis.pm/safe-react-components",
3-
"version": "0.8.4",
3+
"version": "0.8.5",
44
"description": "Gnosis UI components",
55
"main": "dist/index.min.js",
66
"typings": "dist/index.d.ts",

src/ethereum/EthHashInfo/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ type Props = {
6060

6161
type ShortNameProps =
6262
| {
63-
shouldShowShortName: true;
63+
shouldShowShortName: boolean;
6464
shouldCopyShortName?: boolean;
6565
shortName: string;
6666
}
6767
| {
6868
shouldShowShortName?: boolean;
69-
shouldCopyShortName: true;
69+
shouldCopyShortName: boolean;
7070
shortName: string;
7171
}
7272
| {

0 commit comments

Comments
 (0)