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');