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

Commit

Permalink
Fix EthHashInfo props to receive always the two flags values (#161)
Browse files Browse the repository at this point in the history
* Fix EthHashInfo props to receive always the two flags values

* 0.8.5
  • Loading branch information
DiogoSoaress authored Oct 28, 2021
1 parent ee8e15f commit a57de15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/EthHashInfo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ type Props = {

type ShortNameProps =
| {
shouldShowShortName: true;
shouldShowShortName: boolean;
shouldCopyShortName?: boolean;
shortName: string;
}
| {
shouldShowShortName?: boolean;
shouldCopyShortName: true;
shouldCopyShortName: boolean;
shortName: string;
}
| {
Expand Down

0 comments on commit a57de15

Please sign in to comment.