fix: add memory google drive connector

This commit is contained in:
Mahesh Sanikommmu 2026-01-02 15:44:26 -08:00
parent 1e4de94840
commit 15329bee31

View file

@ -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) {