diff --git a/packages/desktop-client/src/components/modals/ImportTransactions.jsx b/packages/desktop-client/src/components/modals/ImportTransactions.jsx
index b4b1b59474d62cc33fd520c5875615acb656a06d..176a06e71823c6eb952b93fe6302c925d6701cf4 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 0000000000000000000000000000000000000000..4a7256ecec1713155ad14e9b15b1a8f7498e31e8
--- /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.