diff --git a/apps/web/src/pages/TransactionsPage.tsx b/apps/web/src/pages/TransactionsPage.tsx index b0d47a1..5bce538 100644 --- a/apps/web/src/pages/TransactionsPage.tsx +++ b/apps/web/src/pages/TransactionsPage.tsx @@ -1,7 +1,7 @@ import React, { useState, useMemo, useCallback } from 'react'; import { useTransactionStore } from '../stores/transactionStore'; import type { Transaction } from '@brazil-swift-ops/types'; -import { calculateTransactionEOUplift, getDefaultConverter } from '@brazil-swift-ops/utils'; +import { calculateTransactionEOUplift, getDefaultConverter, getAllBanks, getBankBySwiftCode } from '@brazil-swift-ops/utils'; import { validateAmount, validateCurrency, @@ -189,6 +189,35 @@ export default function TransactionsPage() {

New Transaction

+ {/* Bank Selection */} +
+ + + {selectedBank && ( +
+

+ Selected Bank: {selectedBank.institutionName} +

+

+ {selectedBank.city}, {selectedBank.country} | SWIFT: {selectedBank.swiftCode} +

+
+ )} +
+