Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into PE-7668-wander-bra…
Browse files Browse the repository at this point in the history
…nding
  • Loading branch information
atticusofsparta committed Feb 13, 2025
2 parents bb74cd2 + f608e60 commit 6af200f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Changed

- Changed ArConnect branding to Wander branding.
- Added support for account switching with Metamask
- Added support for account switching with Metamask.

### Fixed

- Fixed auto-reconnect issue when disconnecting with Metamask and refreshing page
- Fixed auto-reconnect issue when disconnecting with Metamask and refreshing page.
- Fixed displaying Update button to non-owners (controllers) in domains table.

## [1.0.0] - 2024-02-12

Expand Down
2 changes: 1 addition & 1 deletion src/components/data-display/tables/DomainsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ const DomainsTable = ({
}
return row.original.antErrors.find(
(e) => e instanceof UpgradeRequiredError,
) ? (
) && row.original.role === 'owner' ? (
<ErrorsTip
errors={antErrors.filter(
(e) => e instanceof UpgradeRequiredError,
Expand Down

0 comments on commit 6af200f

Please sign in to comment.