Skip to content

Commit

Permalink
Merge pull request #101 from mintlayer/dev
Browse files Browse the repository at this point in the history
Fix: crypto symbol, manifest description
  • Loading branch information
owlsua authored Jan 20, 2024
2 parents 4d4d8d4 + fd29fd5 commit 3b5db73
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ jobs:
run: npm test -- --watchAll=false
- name: Build
run: npm run build --if-present
- name: E2E Test
uses: cypress-io/github-action@v4
with:
browser: chrome
build: npm run build:staging
start: npm run serve
wait-on: http://localhost:8000
record: true
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: E2E Test
# uses: cypress-io/github-action@v4
# with:
# browser: chrome
# build: npm run build:staging
# start: npm run serve
# wait-on: http://localhost:8000
# record: true
# env:
# CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "browser-extension",
"version": "1.1.0",
"version": "1.1.1",
"private": true,
"dependencies": {
"@mintlayer/entropy-generator": "^1.0.2",
Expand Down
4 changes: 2 additions & 2 deletions public/manifestDefault.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"manifest_version": 3,
"name": "Mojito - A Mintlayer Wallet",
"version": "1.1.0",
"version": "1.1.1",
"short_name": "Mojito",
"description": "Mojito is a non-custodial decentralized crypto wallet that lets you send and receive BTC from any other address.",
"description": "Mojito is a non-custodial decentralized crypto wallet that lets you send and receive BTC and ML from any other address.",
"homepage_url": "https://www.mintlayer.org/",
"icons": {
"16": "logo16.png",
Expand Down
4 changes: 2 additions & 2 deletions public/manifestFirefox.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"manifest_version": 2,
"name": "Mojito - A Mintlayer Wallet",
"version": "1.1.0",
"version": "1.1.1",
"short_name": "Mojito",
"description": "Mojito is a non-custodial decentralized crypto wallet that lets you send and receive BTC from any other address.",
"description": "Mojito is a non-custodial decentralized crypto wallet that lets you send and receive BTC and ML from any other address.",
"homepage_url": "https://www.mintlayer.org/",
"icons": {
"16": "logo16.png",
Expand Down
2 changes: 1 addition & 1 deletion src/components/containers/Dashboard/CryptoList.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const CryptoItem = ({ colorList, onClickItem, item }) => {
idx * 10,
Number(value),
])
const symbol = networkType === !isTestnet ? item.symbol : 'Test'
const symbol = !isTestnet ? item.symbol : 'Test'

const onClick = () => {
onClickItem(item)
Expand Down

0 comments on commit 3b5db73

Please sign in to comment.