From b2d8fc460be3105ac383098e7cdc92171e5026ec Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Mon, 23 Mar 2026 08:13:02 +0000 Subject: feat: unify Google Tasks with main system via caching and integrated UI - Implement SQLite caching layer for Google Tasks - Integrate Google Tasks into unified Atoms loop (showing in Tasks tab) - Update Planning tab to include cached Google Tasks - Enhance Quick Add form with Todoist project selector - Remove orphaned HandleTasksTab/HandleRefreshTab methods - Update tests to reflect new BuildTimeline signature and data structures --- internal/handlers/timeline.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/handlers/timeline.go') diff --git a/internal/handlers/timeline.go b/internal/handlers/timeline.go index 86b89ea..bbdae51 100644 --- a/internal/handlers/timeline.go +++ b/internal/handlers/timeline.go @@ -70,7 +70,7 @@ func (h *Handler) HandleTimeline(w http.ResponseWriter, r *http.Request) { } // Call BuildTimeline - items, err := BuildTimeline(r.Context(), h.store, h.googleTasksClient, start, end) + items, err := BuildTimeline(r.Context(), h.store, start, end) if err != nil { JSONError(w, http.StatusInternalServerError, "Failed to build timeline", err) return -- cgit v1.2.3