From 345ea71eed69b3bd0d84d8581abeb8040e36e374 Mon Sep 17 00:00:00 2001
From: Attila Kerekes <439392+keriati@users.noreply.github.com>
Date: Fri, 12 Apr 2024 16:54:55 +0200
Subject: [PATCH] Add option to disable reconciliation when importing CSV and 
 files. (#2585)

---
 .../src/components/modals/ImportTransactions.jsx         | 9 +++++++++
 upcoming-release-notes/2585.md                           | 6 ++++++
 2 files changed, 15 insertions(+)
 create mode 100644 upcoming-release-notes/2585.md

diff --git a/packages/desktop-client/src/components/modals/ImportTransactions.jsx b/packages/desktop-client/src/components/modals/ImportTransactions.jsx
index b4b1b5947..176a06e71 100644
--- a/packages/desktop-client/src/components/modals/ImportTransactions.jsx
+++ b/packages/desktop-client/src/components/modals/ImportTransactions.jsx
@@ -1218,6 +1218,15 @@ export function ImportTransactions({ modalProps, options }) {
                 >
                   Clear transactions on import
                 </CheckboxOption>
+                <CheckboxOption
+                  id="form_dont_reconcile"
+                  checked={reconcile}
+                  onChange={() => {
+                    setReconcile(state => !state);
+                  }}
+                >
+                  Reconcile transactions
+                </CheckboxOption>
               </View>
             )}
 
diff --git a/upcoming-release-notes/2585.md b/upcoming-release-notes/2585.md
new file mode 100644
index 000000000..4a7256ece
--- /dev/null
+++ b/upcoming-release-notes/2585.md
@@ -0,0 +1,6 @@
+---
+category: Features
+authors: [keriati]
+---
+
+Add checkbox to disable reconciliation when importing CSV files.
-- 
GitLab