From 54fba7d2535984b995c41127303c983db5b84df4 Mon Sep 17 00:00:00 2001 From: Damilola Debel Date: Mon, 6 Nov 2023 14:16:14 +0100 Subject: [PATCH 1/2] fix/showing-xtz-nfts --- .../pages/account-transaction-list/account-transaction-list.ts | 1 + src/app/pages/collectibles-item/collectibles-item.module.ts | 3 ++- src/app/pages/collectibles-list/collectibles-list.module.ts | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/pages/account-transaction-list/account-transaction-list.ts b/src/app/pages/account-transaction-list/account-transaction-list.ts index 8c1111edf..9823641bb 100644 --- a/src/app/pages/account-transaction-list/account-transaction-list.ts +++ b/src/app/pages/account-transaction-list/account-transaction-list.ts @@ -157,6 +157,7 @@ export class AccountTransactionListPage { this.actionGroup = new ActionGroup(this) this.actionGroup.getActions().then((actions) => { + console.log('constructor', actions) this.actions = actions }) } diff --git a/src/app/pages/collectibles-item/collectibles-item.module.ts b/src/app/pages/collectibles-item/collectibles-item.module.ts index 09065e11d..b74d78938 100644 --- a/src/app/pages/collectibles-item/collectibles-item.module.ts +++ b/src/app/pages/collectibles-item/collectibles-item.module.ts @@ -28,7 +28,8 @@ import * as fromCollectiblesItem from './collectibles-item.reducers' AirGapAngularCoreModule, AirGapAngularNgRxModule, StoreModule.forFeature('collectiblesItem', fromCollectiblesItem.reducer), - EffectsModule.forFeature([CollectiblesItemEffects]) + EffectsModule.forFeature([CollectiblesItemEffects]), + EffectsModule.forRoot([]) ], declarations: [CollectiblesItemPage] }) diff --git a/src/app/pages/collectibles-list/collectibles-list.module.ts b/src/app/pages/collectibles-list/collectibles-list.module.ts index 025c83c9c..bfbd4a812 100644 --- a/src/app/pages/collectibles-list/collectibles-list.module.ts +++ b/src/app/pages/collectibles-list/collectibles-list.module.ts @@ -30,7 +30,8 @@ import * as fromCollectiblesList from './collectibles-list.reducers' AirGapAngularNgRxModule, PipesModule, StoreModule.forFeature('collectiblesList', fromCollectiblesList.reducer), - EffectsModule.forFeature([CollectiblesListEffects]) + EffectsModule.forFeature([CollectiblesListEffects]), + EffectsModule.forRoot([]) ], declarations: [CollectiblesListPage] }) From 047b6d40643af339ed8ba5888ddafe5c2b488ba3 Mon Sep 17 00:00:00 2001 From: Damilola Debel Date: Mon, 6 Nov 2023 14:18:54 +0100 Subject: [PATCH 2/2] fix/showing-xtz-nfts --- .../pages/account-transaction-list/account-transaction-list.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/pages/account-transaction-list/account-transaction-list.ts b/src/app/pages/account-transaction-list/account-transaction-list.ts index 9823641bb..8c1111edf 100644 --- a/src/app/pages/account-transaction-list/account-transaction-list.ts +++ b/src/app/pages/account-transaction-list/account-transaction-list.ts @@ -157,7 +157,6 @@ export class AccountTransactionListPage { this.actionGroup = new ActionGroup(this) this.actionGroup.getActions().then((actions) => { - console.log('constructor', actions) this.actions = actions }) }