Skip to content

Commit

Permalink
Merge pull request #6441 from blockchain/feat/add-open-to-exclusions
Browse files Browse the repository at this point in the history
add open route to exclusions
  • Loading branch information
jhagerman-bc authored Aug 20, 2024
2 parents 032f483 + 3250ea3 commit e73df3f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
7 changes: 5 additions & 2 deletions packages/blockchain-wallet-v4-frontend/src/scenes/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ const useFullPathForRedirect = [
'/wallet-options-v4.json',
'/#/prove',
'/#/reset-two-factor',
'/#/open',
'/forgot-password',
'/import-wallet'
]
Expand All @@ -126,7 +127,8 @@ const excludedProduction = [
'/#/login?product=exchange',
'/wallet-options-v4.json',
'/#/prove',
'/#/reset-two-factor'
'/#/reset-two-factor',
'/#/open'
]

const excludedStaging = [
Expand All @@ -139,8 +141,9 @@ const excludedStaging = [
// '/#/verify-email',
'/#/login?product=exchange',
'/wallet-options-v4.json',
'/#/prove'
'/#/prove',
// '/#/reset-two-factor'
'/#/open'
]

const App = ({
Expand Down
8 changes: 7 additions & 1 deletion packages/blockchain-wallet-v4/src/redux/data/eth/sagas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,13 @@ export default ({ api }: { api: APIType }) => {
}
// process txs further for report
// eslint-disable-next-line
const processedTxList = yield call(__processReportTxs, ethAddress, fullTxList, startDate, endDate)
const processedTxList = yield call(
__processReportTxs,
ethAddress,
fullTxList,
startDate,
endDate
)
yield put(A.fetchTransactionHistorySuccess(processedTxList))
} catch (e) {
yield put(A.fetchTransactionHistoryFailure(e.message))
Expand Down

0 comments on commit e73df3f

Please sign in to comment.