diff --git a/cw_bitcoin/lib/litecoin_wallet.dart b/cw_bitcoin/lib/litecoin_wallet.dart
index b4aa8fc64..b76bef068 100644
--- a/cw_bitcoin/lib/litecoin_wallet.dart
+++ b/cw_bitcoin/lib/litecoin_wallet.dart
@@ -254,6 +254,7 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
     if (!mwebEnabled) {
       try {
         await updateAllUnspents();
+        await updateTransactions();
         await updateBalance();
         syncStatus = SyncedSyncStatus();
       } catch (e, s) {
@@ -911,7 +912,7 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
           }).toList())
           .toHex();
       tx.outputAddresses = resp.outputId;
-      
+
       return tx
         ..addListener((transaction) async {
           final addresses = <String>{};
diff --git a/lib/src/screens/dashboard/widgets/transaction_raw.dart b/lib/src/screens/dashboard/widgets/transaction_raw.dart
index 89be273ff..b18131f3d 100644
--- a/lib/src/screens/dashboard/widgets/transaction_raw.dart
+++ b/lib/src/screens/dashboard/widgets/transaction_raw.dart
@@ -60,7 +60,7 @@ class TransactionRow extends StatelessWidget {
                               fontWeight: FontWeight.w500,
                               color: Theme.of(context).extension<DashboardPageTheme>()!.textColor,
                             )),
-                        ...tags.map((tag) => TxTag(tag: tag)).toList(),
+                        ...tags.map((tag) => Row(children: [SizedBox(width: 8), TxTag(tag: tag)])),
                       ],
                     ),
                     Text(formattedAmount,