diff --git a/backend/app/api/v1/predictions.py b/backend/app/api/v1/predictions.py index 6accb3a..8130169 100644 --- a/backend/app/api/v1/predictions.py +++ b/backend/app/api/v1/predictions.py @@ -214,7 +214,7 @@ async def cashflow_forecast( # Fetch recurring transactions (expenses) rec_result = await db.execute(text(""" - SELECT description_enc, amount::float, recurring_rule, date + SELECT description, amount::float, recurring_rule, date FROM transactions WHERE user_id = CAST(:uid AS uuid) AND is_recurring = TRUE