From 92078c11602349e8f458fd2812b3b782efb92a3b Mon Sep 17 00:00:00 2001 From: Mahesh Sanikommu Date: Sun, 4 Jan 2026 11:00:47 -0800 Subject: [PATCH 1/2] fix: add memory google drive connector (#647) --- apps/web/components/views/connections-tab-content.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/apps/web/components/views/connections-tab-content.tsx b/apps/web/components/views/connections-tab-content.tsx index d3afe2e5..9a63d6fd 100644 --- a/apps/web/components/views/connections-tab-content.tsx +++ b/apps/web/components/views/connections-tab-content.tsx @@ -111,12 +111,6 @@ export function ConnectionsTabContent() { // Add connection mutation const addConnectionMutation = useMutation({ mutationFn: async (provider: ConnectorProvider) => { - // Check if Google Drive is disabled - if (provider === "google-drive") { - throw new Error( - "Google Drive connections are temporarily disabled. This will be resolved soon.", - ) - } // Check if user can add connections if (!canAddConnection && !isProUser) { From a12852c95d4dd794dea5744b56247dc56698b7ec Mon Sep 17 00:00:00 2001 From: MaheshtheDev <38828053+MaheshtheDev@users.noreply.github.com> Date: Sun, 4 Jan 2026 19:01:50 +0000 Subject: [PATCH 2/2] chore: chatid for posthog (#650) --- apps/web/components/views/chat/chat-messages.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web/components/views/chat/chat-messages.tsx b/apps/web/components/views/chat/chat-messages.tsx index 60a82132..94743985 100644 --- a/apps/web/components/views/chat/chat-messages.tsx +++ b/apps/web/components/views/chat/chat-messages.tsx @@ -266,6 +266,7 @@ export function ChatMessages() { metadata: { projectId: selectedProject, model: selectedModel, + chatId: currentChatId, }, }, }),