diff --git a/packages/desktop-client/src/components/mobile/transactions/TransactionList.jsx b/packages/desktop-client/src/components/mobile/transactions/TransactionList.jsx index 80671094f49..85962df4159 100644 --- a/packages/desktop-client/src/components/mobile/transactions/TransactionList.jsx +++ b/packages/desktop-client/src/components/mobile/transactions/TransactionList.jsx @@ -112,6 +112,7 @@ export function TransactionList({ aria-label="Transaction list" selectionMode={selectedTransactions.size > 0 ? 'multiple' : 'single'} selectedKeys={selectedTransactions} + dependencies={[selectedTransactions]} renderEmptyState={() => ( )} items={sections} - dependencies={[selectedTransactions]} > {section => (
@@ -155,6 +155,7 @@ export function TransactionList({ > {transaction => ( onTransactionPress(trans)} onLongPress={trans => onTransactionPress(trans, true)} diff --git a/packages/desktop-client/src/components/mobile/transactions/TransactionListItem.tsx b/packages/desktop-client/src/components/mobile/transactions/TransactionListItem.tsx index 542a2ec43bf..b61faf92e01 100644 --- a/packages/desktop-client/src/components/mobile/transactions/TransactionListItem.tsx +++ b/packages/desktop-client/src/components/mobile/transactions/TransactionListItem.tsx @@ -122,147 +122,149 @@ export function TransactionListItem({ : {}; return ( - ({ - ...(isSelected - ? { - borderWidth: '0 0 0 4px', - borderColor: theme.mobileTransactionSelected, - borderStyle: 'solid', - } - : {}), - })} - textValue={id} - {...props} - > - - - + + + )} ); }