Skip to content

Commit

Permalink
chore: fixes the CS links
Browse files Browse the repository at this point in the history
  • Loading branch information
zone-live committed Sep 2, 2024
1 parent ef7fa43 commit aea912f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion app/scripts/controllers/mmi-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,9 @@ export default class MMIController extends EventEmitter {
let addresses: string[] = [];
const custodyTypes = this.custodyController.getAllCustodyTypes();

for (const type of custodyTypes) {
const filteredCustodyTypesArray = Array.from(custodyTypes).filter(type => type !== 'Custody - Qredo');

for (const type of filteredCustodyTypesArray) {
try {
const keyring = await this.addKeyringIfNotExists(type as KeyringTypes);

Expand Down
4 changes: 2 additions & 2 deletions builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ buildTypes:
- REQUIRE_SNAPS_ALLOWLIST: true
- IFRAME_EXECUTION_ENVIRONMENT_URL: https://execution.metamask.io/iframe/6.4.0/index.html
- MMI_CONFIGURATION_SERVICE_URL: https://configuration.metamask-institutional.io/v2/configuration/default
- SUPPORT_LINK: https://mmi-support.metamask.io/hc/en-us
- SUPPORT_REQUEST_LINK: https://mmi-support.metamask.io/hc/en-us/requests/new
- SUPPORT_LINK: https://support.metamask-institutional.io
- SUPPORT_REQUEST_LINK: https://support.metamask-institutional.io
- SENTRY_DSN: SENTRY_MMI_DSN
# For some reason, MMI uses this type of versioning
# Leaving it on for backwards compatibility
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/mmi/specs/navigation.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import { MMIMainPage } from '../pageObjects/mmi-main-page';

const portfolio = `${process.env.MMI_E2E_MMI_DASHBOARD_URL}/portfolio`;
const stake = `${process.env.MMI_E2E_MMI_DASHBOARD_URL}/stake`;
const support = 'https://mmi-support.metamask.io/hc/en-us';
const support = 'https://support.metamask-institutional.io';
const supportContactUs =
'https://mmi-support.metamask.io/hc/en-us/requests/new';
'https://support.metamask-institutional.io';
const mmiHomePage = 'https://metamask.io/institutions/';
const privacyAndPolicy = 'https://consensys.io/privacy-policy';
const openSeaTermsOfUse = 'https://opensea.io/securityproviderterms';
Expand Down

0 comments on commit aea912f

Please sign in to comment.