# Notes & Tasks Fix + Double-Fetch Fix Summary\n\n## Issues Fixed\n\n### 1. Notes and Tasks Returning Zero Results\n**Root Cause**: Methods used minutes instead of days\n**Fix**: Changed to days parameter\n\n### 2. Double-Fetching (Partners Getting Both Caches)\n**Root Cause**: oauth.mjs cached customer data for everyone, auth_routes.mjs cached partner data for partners\n**Fix**: Moved all caching to auth_routes.mjs with conditional logic\n\n## Files Modified\n- hubspot-mcp-server/src/hubspot-client.ts (days instead of minutes)\n- backend/server/routes/oauth.mjs (removed customer data cache)\n- backend/api/auth_routes.mjs (added conditional caching based on user type)
