diff --git a/pages/containers/Authenticated.tsx b/pages/containers/Authenticated.tsx
index bfeb687..ea9dbd3 100644
--- a/pages/containers/Authenticated.tsx
+++ b/pages/containers/Authenticated.tsx
@@ -8,6 +8,7 @@ import SignIn from './SignIn';
import { AuthenticatedData } from '../utils';
import GetCompanyProfile from '../features/GetCompanyProfile';
import GetBankAccounts from '../features/GetBankAccounts';
+import GetBankAccountById from '../features/GetBankAccountById';
import GetTransactions from '../features/GetTransactions';
import GetTransactionById from '../features/GetTransactionById';
import GetReceiptForTransaction from '../features/GetReceiptForTransaction';
@@ -97,6 +98,13 @@ function Authenticated({ authenticatedData }: { authenticatedData: Authenticated
authenticatedData={authenticatedData}
/>
+
Transactions