aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMahesh Sanikommu <[email protected]>2026-01-04 11:00:47 -0800
committerGitHub <[email protected]>2026-01-04 11:00:47 -0800
commit92078c11602349e8f458fd2812b3b782efb92a3b (patch)
treed2645564d57fb871bf282050ca513d3e5b421e08 /apps
parentMerge branch 'main' of https://github.com/supermemoryai/supermemory (diff)
downloadsupermemory-92078c11602349e8f458fd2812b3b782efb92a3b.tar.xz
supermemory-92078c11602349e8f458fd2812b3b782efb92a3b.zip
fix: add memory google drive connector (#647)
Diffstat (limited to 'apps')
-rw-r--r--apps/web/components/views/connections-tab-content.tsx6
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) {