From eec5fbb1cc515cc4a2495cc2c683024e5446fb88 Mon Sep 17 00:00:00 2001 From: Jakob Petsovits Date: Sun, 11 Aug 2024 12:59:48 -0400 Subject: [PATCH] Return early from SimpleFIN /transactions if the account needs attention (#413) --- src/app-simplefin/app-simplefin.js | 1 + upcoming-release-notes/413.md | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 upcoming-release-notes/413.md diff --git a/src/app-simplefin/app-simplefin.js b/src/app-simplefin/app-simplefin.js index dd37ee8c52..fbe4b2135c 100644 --- a/src/app-simplefin/app-simplefin.js +++ b/src/app-simplefin/app-simplefin.js @@ -123,6 +123,7 @@ app.post( 'The account needs your attention at SimpleFIN.', }, }); + return; } const response = {}; diff --git a/upcoming-release-notes/413.md b/upcoming-release-notes/413.md new file mode 100644 index 0000000000..b620f7e89f --- /dev/null +++ b/upcoming-release-notes/413.md @@ -0,0 +1,6 @@ +--- +category: Bugfix +authors: [jpetso] +--- + +Return early from SimpleFIN /transactions if the account needs attention