Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/web/components/views/chat/chat-messages.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ export function ChatMessages() {
metadata: {
projectId: selectedProject,
model: selectedModel,
chatId: currentChatId,
},
},
}),
Expand Down
6 changes: 0 additions & 6 deletions apps/web/components/views/connections-tab-content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Loading