Skip to content

Commit

Permalink
Merge pull request #194 from lidofinance/fix/wallet-metrics-hotfix
Browse files Browse the repository at this point in the history
Fix: wallet metrics hotfix
  • Loading branch information
alx-khramov authored Oct 30, 2024
2 parents 122e345 + e3d61fe commit cdc02fd
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 9 deletions.
6 changes: 6 additions & 0 deletions packages/connect-wallet-modal/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @reef-knot/connect-wallet-modal

## 5.5.3

### Patch Changes

- Hotfix: wallets metrics in WalletsModal

## 5.5.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/connect-wallet-modal/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reef-knot/connect-wallet-modal",
"version": "5.5.2",
"version": "5.5.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,11 @@ import { useReefKnotModal } from '@reef-knot/core-react';

export function WalletsModal({
children,
metrics,
termsLink,
privacyNoticeLink,
onClickWalletsLess,
onClickWalletsMore,
...passedDownProps
...props
}: React.PropsWithChildren<WalletsModalProps>) {
const { metrics, termsLink, privacyNoticeLink } = props;
const { onClickWalletsLess, onClickWalletsMore, ...passedDownProps } = props;

const { currentModal, closeModal, forceCloseAllModals } = useReefKnotModal();

const termsProps: WalletModalConnectTermsProps = {
Expand Down
8 changes: 8 additions & 0 deletions packages/reef-knot/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# reef-knot

## 5.7.5

### Patch Changes

- Hotfix: wallets metrics in WalletsModal
- Updated dependencies
- @reef-knot/connect-wallet-modal@5.5.3

## 5.7.4

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/reef-knot/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reef-knot",
"version": "5.7.4",
"version": "5.7.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
Expand Down Expand Up @@ -41,7 +41,7 @@
"lint": "eslint --ext ts,tsx,js,mjs ."
},
"dependencies": {
"@reef-knot/connect-wallet-modal": "5.5.2",
"@reef-knot/connect-wallet-modal": "5.5.3",
"@reef-knot/core-react": "4.3.0",
"@reef-knot/web3-react": "4.0.1",
"@reef-knot/ui-react": "2.1.4",
Expand Down

0 comments on commit cdc02fd

Please sign in to comment.