diff --git a/jam-ui/cypress/e2e/friends/friends-page.cy.js b/jam-ui/cypress/e2e/friends/friends-page.cy.js index 0a6694b95..0de5d2cb9 100644 --- a/jam-ui/cypress/e2e/friends/friends-page.cy.js +++ b/jam-ui/cypress/e2e/friends/friends-page.cy.js @@ -146,7 +146,7 @@ describe('Friends page with data', () => { closeSidePanel(); }); - it.only('click more button', () => { + it('click more button', () => { //open side panel by clicking more button cy.get('[data-testid=peopleListTable] > tbody tr') .first() @@ -207,7 +207,7 @@ describe('Friends page with data', () => { }); - describe.only('in mobile', () => { + describe('in mobile', () => { beforeEach(() => { cy.viewport('iphone-6'); }); diff --git a/jam-ui/src/components/profile/JKInstrumentIcon.js b/jam-ui/src/components/profile/JKInstrumentIcon.js index f8d465cd4..c0432f201 100644 --- a/jam-ui/src/components/profile/JKInstrumentIcon.js +++ b/jam-ui/src/components/profile/JKInstrumentIcon.js @@ -8,7 +8,7 @@ function JKInstrumentIcon({instrumentId, instrumentName}) { try { file = require(`../../icons/instruments/icon_instrument_${instrumentId.replace(/\s+/g, '_')}.svg`); } catch (error) { - file = require("../../icons/instruments/icon_instrument_unknown.svg"); + file = require("../../icons/instruments/icon_instrument_other.svg"); } return {instrumentName}