@zeniai/client-epic-state 5.0.51 → 5.0.52-betaAS1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -30,7 +30,7 @@ export const getDepositAccountDetail = (state, depositAccountId) => {
30
30
  const zeniAccountDetail = zeniAccountDetailState.depositAccountDetailById[depositAccountId];
31
31
  const depositAccount = getDepositAccountByDepositAccountId(depositAccountState, depositAccountId);
32
32
  const zeniAccountsConfig = getZeniAccountsConfigDetail(state);
33
- const transactionListView = getDepositAccountTransactionList(state, depositAccountId, 5);
33
+ const transactionListView = getDepositAccountTransactionList(state, depositAccountId);
34
34
  let accountUpdateStatus = {
35
35
  editName: {
36
36
  fetchState: 'Not-Started',
@@ -16,7 +16,7 @@ export const fetchDepositAccountDetailEpic = (actions$, state$) => actions$.pipe
16
16
  zeniAccountActions.push(fetchPaymentAccountList());
17
17
  zeniAccountActions.push(fetchZeniAccountsConfig());
18
18
  zeniAccountActions.push(fetchDepositAccount(depositAccountId));
19
- zeniAccountActions.push(fetchDepositAccountTransactionList(depositAccountId, true, 5));
19
+ zeniAccountActions.push(fetchDepositAccountTransactionList(depositAccountId, true));
20
20
  zeniAccountActions.push(fetchAccountHistory(depositAccountId));
21
21
  }
22
22
  else {
@@ -37,7 +37,7 @@ export const fetchDepositAccountDetailEpic = (actions$, state$) => actions$.pipe
37
37
  targetZeniAccountAccount.fetchState !== 'In-Progress')) {
38
38
  zeniAccountActions.push(fetchDepositAccount(depositAccountId));
39
39
  }
40
- zeniAccountActions.push(fetchDepositAccountTransactionList(depositAccountId, false, 5));
40
+ zeniAccountActions.push(fetchDepositAccountTransactionList(depositAccountId, false));
41
41
  const zeniAccountsConfig = state.zeniAccountsConfigState;
42
42
  if (zeniAccountsConfig.hasValidState() === false &&
43
43
  zeniAccountsConfig.fetchState !== 'In-Progress') {