-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump manifest version v1.19.2 (#1680)
- Loading branch information
Showing
3 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
apps/browser-extension-wallet/src/release-notes/1_19_2.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* eslint-disable camelcase */ | ||
import React from 'react'; | ||
|
||
const ReleaseNote_1_19_2 = (): React.ReactElement => ( | ||
<> | ||
<p>This release:</p> | ||
<ul style={{ listStyleType: 'disc', margin: 0 }}> | ||
<li>Fixes an issue with the initial load of the DApp explorer</li> | ||
<li>Improves wallet onboarding performance for multi-address accounts</li> | ||
<li>Optimizes idle detection</li> | ||
<li>Slightly extends the background fetch interval</li> | ||
<li>Prevent crashing when removing the last wallet when in Nami mode</li> | ||
</ul> | ||
</> | ||
); | ||
|
||
export default ReleaseNote_1_19_2; |