Skip to content

Commit

Permalink
7.2.3 (#129)
Browse files Browse the repository at this point in the history
* fix: guard for empty network + chainID (#127)

* chore: bump extension versions (#128)

---------
Co-authored-by: plubber <[email protected]>
  • Loading branch information
mwmerz authored Apr 26, 2023
1 parent d7870e8 commit 7d3e379
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion public/firefox.manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Station Wallet",
"version": "7.2.1",
"version": "7.2.3",
"background": {
"scripts": ["background.js"],
"persistent": true
Expand Down
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Station Wallet",
"version": "7.2.2",
"version": "7.2.3",
"background": {
"service_worker": "background.js",
"type": "module"
Expand Down
2 changes: 1 addition & 1 deletion src/extension/modules/TxDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const TxDetails = ({ origin, timestamp, tx }: TxRequest) => {

const fees = fee?.amount.toData()
const contents = [
{ title: t("Network"), content: `${network[chainID].name} (${chainID})` },
{ title: t("Network"), content: `${network[chainID]?.name} (${chainID})` },
{ title: t("Origin"), content: origin },
{ title: t("Timestamp"), content: <ToNow update>{timestamp}</ToNow> },
{ title: t("Fee"), content: fees && <ReadMultiple list={fees} /> },
Expand Down

0 comments on commit 7d3e379

Please sign in to comment.