From e8b54bc2cabd52b16a85823d11b7aa1a6de01aa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Mata?= Date: Fri, 8 Aug 2025 02:08:05 +0000 Subject: [PATCH] Not sure how skipping worked for me the first time --- app/controllers/simplefin_items_controller.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/controllers/simplefin_items_controller.rb b/app/controllers/simplefin_items_controller.rb index 8ee030f63..91b04a66b 100644 --- a/app/controllers/simplefin_items_controller.rb +++ b/app/controllers/simplefin_items_controller.rb @@ -93,6 +93,9 @@ class SimplefinItemsController < ApplicationController account_subtypes = params[:account_subtypes] || {} account_types.each do |simplefin_account_id, selected_type| + # Skip accounts that the user chose not to add + next if selected_type == "Skip" + simplefin_account = @simplefin_item.simplefin_accounts.find(simplefin_account_id) selected_subtype = account_subtypes[simplefin_account_id]