From 2a9546ced1a4adfad3e6cfc37b7bbe6907759a2c Mon Sep 17 00:00:00 2001
From: Matiss Janis Aboltins <matiss@mja.lv>
Date: Sun, 1 Sep 2024 20:08:19 +0100
Subject: [PATCH] :bug: fix reconciliation closing on enter click (#3338)

---
 .../desktop-client/src/components/accounts/Reconcile.jsx    | 2 +-
 upcoming-release-notes/3338.md                              | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)
 create mode 100644 upcoming-release-notes/3338.md

diff --git a/packages/desktop-client/src/components/accounts/Reconcile.jsx b/packages/desktop-client/src/components/accounts/Reconcile.jsx
index 5ebcd31fa76..ab7127858ef 100644
--- a/packages/desktop-client/src/components/accounts/Reconcile.jsx
+++ b/packages/desktop-client/src/components/accounts/Reconcile.jsx
@@ -78,7 +78,7 @@ export function ReconcilingMessage({
           </View>
         )}
         <View style={{ marginLeft: 15 }}>
-          <Button variant="primary" autoFocus onPress={onDone}>
+          <Button variant="primary" onPress={onDone}>
             Done Reconciling
           </Button>
         </View>
diff --git a/upcoming-release-notes/3338.md b/upcoming-release-notes/3338.md
new file mode 100644
index 00000000000..7460cfc33b1
--- /dev/null
+++ b/upcoming-release-notes/3338.md
@@ -0,0 +1,6 @@
+---
+category: Bugfix
+authors: [MatissJanis]
+---
+
+Fix reconciliation closing on `enter` click.