diff options
| author | Mahesh Sanikommmu <[email protected]> | 2026-01-02 15:44:26 -0800 |
|---|---|---|
| committer | Mahesh Sanikommmu <[email protected]> | 2026-01-02 15:44:26 -0800 |
| commit | 15329bee31c529f599c649e90c8c31bd682e5a9c (patch) | |
| tree | b6c4a1a71e5a21c8221c83f64cd587766c621db8 | |
| parent | chore: enable google drive connection (#646) (diff) | |
| download | supermemory-01-02-fix_add_memory_google_drive_connector.tar.xz supermemory-01-02-fix_add_memory_google_drive_connector.zip | |
fix: add memory google drive connector01-02-fix_add_memory_google_drive_connector
| -rw-r--r-- | apps/web/components/views/connections-tab-content.tsx | 6 |
1 files changed, 0 insertions, 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) { |