diff --git a/backend/goal_utils.py b/backend/goal_utils.py index 2adc14b..5316993 100644 --- a/backend/goal_utils.py +++ b/backend/goal_utils.py @@ -542,7 +542,8 @@ def get_active_goals(profile_id: str) -> List[Dict]: cur = get_cursor(conn) cur.execute(""" SELECT id, goal_type, name, target_value, target_date, - current_value, start_value, progress_pct, status, is_primary + current_value, start_value, start_date, progress_pct, + status, is_primary, created_at FROM goals WHERE profile_id = %s AND status IN ('active', 'in_progress')