From 9dd3c5a884a0af7c48392088aa260d5eeb470296 Mon Sep 17 00:00:00 2001 From: Vasilica Olariu Date: Wed, 3 Sep 2025 13:36:36 +0300 Subject: [PATCH] fix typo in ba-fees report --- sql/reports/sfdc/ba-fees.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/reports/sfdc/ba-fees.sql b/sql/reports/sfdc/ba-fees.sql index 3592f12..661aec4 100644 --- a/sql/reports/sfdc/ba-fees.sql +++ b/sql/reports/sfdc/ba-fees.sql @@ -1,6 +1,6 @@ SELECT p.billing_account as billing_account_id, - COALESCE(SUM(p.challenge_fee), 0) AS total_feels, + COALESCE(SUM(p.challenge_fee), 0) AS total_fees, COALESCE(SUM(p.total_amount), 0) AS total_member_payments FROM finance.payment p LEFT JOIN finance.winnings w