Skip to content

Commit

Permalink
fix: fix fund test try
Browse files Browse the repository at this point in the history
  • Loading branch information
alter-eggo committed Sep 11, 2023
1 parent 5be81b1 commit 2b2604f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/query/common/remote-config/remote-config.query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ interface RemoteConfig {

// TODO: BRANCH_NAME is not working here for config changes on PR branches
// Playwright tests fail with config changes not on main
const defaultBranch = IS_DEV_ENV || WALLET_ENVIRONMENT === 'testing' ? 'dev' : 'main';
const defaultBranch = IS_DEV_ENV ? 'dev' : 'main';
const githubWalletConfigRawUrl = `https://raw.githubusercontent.com/${GITHUB_ORG}/${GITHUB_REPO}/${
BRANCH_NAME || defaultBranch
}/config/wallet-config.json`;
Expand Down

0 comments on commit 2b2604f

Please sign in to comment.