diff --git a/src/app/deposits/fixed-deposits/fixed-deposit-account-view/transactions-tab/transactions-tab.component.ts b/src/app/deposits/fixed-deposits/fixed-deposit-account-view/transactions-tab/transactions-tab.component.ts
index 54eb2c5d5f..888f720843 100644
--- a/src/app/deposits/fixed-deposits/fixed-deposit-account-view/transactions-tab/transactions-tab.component.ts
+++ b/src/app/deposits/fixed-deposits/fixed-deposit-account-view/transactions-tab/transactions-tab.component.ts
@@ -13,9 +13,6 @@ import { ActivatedRoute, Router } from '@angular/router';
})
export class TransactionsTabComponent implements OnInit {
- /** Fixed Deposits Account Status */
- status: string;
- showTransactionsData = false;
/** Transactions Data */
transactionsData: any;
/** Columns to be displayed in transactions table. */
@@ -32,8 +29,6 @@ export class TransactionsTabComponent implements OnInit {
private router: Router) {
this.route.parent.data.subscribe((data: { fixedDepositsAccountData: any }) => {
this.transactionsData = data.fixedDepositsAccountData.transactions;
- this.status = data.fixedDepositsAccountData.status.value;
- this.showTransactionsData = (this.status === 'Active');
});
}
diff --git a/src/assets/images/recurring-deposits_account_placeholder.png b/src/assets/images/recurring-deposits_account_placeholder.png
index 5bff577f92..658762c028 100644
Binary files a/src/assets/images/recurring-deposits_account_placeholder.png and b/src/assets/images/recurring-deposits_account_placeholder.png differ