diff --git a/docs-v2/pages/connect/_meta.tsx b/docs-v2/pages/connect/_meta.tsx
index a53b7c0718ea4..e236d76049e0d 100644
--- a/docs-v2/pages/connect/_meta.tsx
+++ b/docs-v2/pages/connect/_meta.tsx
@@ -23,9 +23,6 @@ export default {
"api": {
"title": "API & SDK reference",
},
- "troubleshooting": {
- "title": "Troubleshooting",
- },
"migrating-from-project-keys-to-oauth": {
"display": "hidden",
},
diff --git a/docs-v2/pages/connect/index.mdx b/docs-v2/pages/connect/index.mdx
index a6018294c854d..333bf03535c75 100644
--- a/docs-v2/pages/connect/index.mdx
+++ b/docs-v2/pages/connect/index.mdx
@@ -19,7 +19,7 @@ import VideoPlayer from "@/components/VideoPlayer";
## Act on behalf of your users
- Retrieve OAuth access tokens and API keys for your end users with Pipedream's [REST API](/connect/api/)
-- Add 10k pre-built tools and triggers from {process.env.PUBLIC_APPS}+ APIs to your AI agent or embed them directly in your SaaS app
+- [Add 10k pre-built tools and triggers](/connect/components) from {process.env.PUBLIC_APPS}+ APIs to your AI agent or embed them in your SaaS app
- Develop and deploy complex multi-step [workflows](/connect/workflows/) in our best-in-class [visual builder](/workflows/building-workflows/)
- Send custom API requests while still avoiding dealing with customer credentials with the [Connect proxy](/connect/api-proxy/)
diff --git a/docs-v2/pages/connect/managed-auth/oauth-clients.mdx b/docs-v2/pages/connect/managed-auth/oauth-clients.mdx
index bd66dcbbe0316..6442ab7a39be9 100644
--- a/docs-v2/pages/connect/managed-auth/oauth-clients.mdx
+++ b/docs-v2/pages/connect/managed-auth/oauth-clients.mdx
@@ -13,18 +13,18 @@ There are two types of apps in Pipedream:
2. **OAuth**: These apps require OAuth authorization. Pipedream manages the OAuth flow for these apps, ensuring you always have a fresh access token for requests.
-For any OAuth app that supports it, **you can always use your own client.** Your ability to use Pipedream's OAuth clients in production depends on the use case.
+For any OAuth app that supports it, **you can always use your own client.** Your ability to use Pipedream's OAuth clients in production depends on the use case. See below for details.
-| Operation | Details | Environment |
+| Operation | Details | OAuth Client |
|--------|---------|------------------------------|
-| Retrieve user credentrials | [Fetch the credentials](/connect/api#accounts) for your end user from Pipedream's API to use in your app | ✅ `development`
❌ `production` |
-| Invoke workflows | [Trigger any Pipedream workflow](/connect/workflows) and use the connected account of your end users | ✅ `development`
❌ `production` |
-| Embed prebuilt tools | [Run any action and deploy any trigger](/connect/components) directly from your AI agent or app | ✅ `development`
✅ `production` |
-| Proxy API requests | [Write custom code to interface with any integrated API](/connect/api-proxy) while avoiding dealing with user auth | ✅ `development`
✅ `production` |
+| Retrieve user credentrials | [Fetch the credentials](/connect/api#accounts) for your end user from Pipedream's API to use in your app | ❌ Pipedream
✅ Custom |
+| Invoke workflows | [Trigger any Pipedream workflow](/connect/workflows) and use the connected account of your end users | ❌ Pipedream
✅ Custom |
+| Embed prebuilt tools | [Run any action and deploy any trigger](/connect/components) directly from your AI agent or app | ✅ Pipedream
✅ Custom |
+| Proxy API requests | [Write custom code to interface with any integrated API](/connect/api-proxy) while avoiding dealing with user auth | ✅ Pipedream
✅ Custom |
## Using a custom OAuth client
diff --git a/docs-v2/pages/connect/troubleshooting.mdx b/docs-v2/pages/connect/managed-auth/troubleshooting.mdx
similarity index 100%
rename from docs-v2/pages/connect/troubleshooting.mdx
rename to docs-v2/pages/connect/managed-auth/troubleshooting.mdx
diff --git a/vercel.json b/vercel.json
index 16951561dc26a..299a89623b8bb 100644
--- a/vercel.json
+++ b/vercel.json
@@ -229,6 +229,10 @@
{
"source": "/docs/code/python/#listing-files-in-tmp",
"destination": "/docs/code/python/working-with-files/#listing-files-in-tmp"
+ },
+ {
+ "source": "/docs/connect/troubleshooting",
+ "destination": "/docs/connect/managed-auth/troubleshooting"
}
]
}