From 17394f5317a4f89d3ad54f706bebe908dff2ea4d Mon Sep 17 00:00:00 2001 From: Priyanka Punukollu Date: Thu, 26 Feb 2026 22:46:59 -0600 Subject: [PATCH] fix: remove MLS banner; extend tax season banner to Feb-Apr Made-with: Cursor --- agent/chat_ui.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/agent/chat_ui.html b/agent/chat_ui.html index 9f30d3139..0af10de0e 100644 --- a/agent/chat_ui.html +++ b/agent/chat_ui.html @@ -8529,9 +8529,8 @@ let suggestion = null; if (dow === 1 && hour >= 8 && hour <= 10) suggestion = { text: '๐Ÿ“… Monday morning โ€” check your weekly portfolio performance?', query: 'How did my portfolio perform this week vs the market?' }; - else if (month >= 3 && month <= 4) suggestion = { text: '๐Ÿงพ Tax season โ€” have you estimated your capital gains liability?', query: 'Estimate my capital gains tax liability for this year' }; + else if (month >= 2 && month <= 4) suggestion = { text: '๐Ÿงพ Tax season โ€” have you estimated your capital gains liability?', query: 'Estimate my capital gains tax liability for this year' }; else if (daysSince > 7) suggestion = { text: '๐Ÿ“Š It\'s been over a week โ€” want a quick portfolio summary?', query: 'Give me a brief portfolio summary with anything important' }; - else if (month === 2 || month === 8) suggestion = { text: '๐Ÿ  Austin MLS data is fresh โ€” check the market?', query: 'What is the Austin housing market like right now?' }; if (suggestion) { const banner = document.getElementById('smart-banner');