-
-
-
-
Amazon Web Services
-
-
-
-
-
- Google Cloud Platform
-
-
-
-
-
-
-
-
- Microsoft 365
-
-
-
-
-
- Kubernetes
-
-
-
-
-
- GitHub
-
-
+ {PROVIDERS_CONFIG.map((provider) => (
+
+ ))}
{errorMessage && (
diff --git a/ui/components/providers/workflow/forms/connect-account-form.tsx b/ui/components/providers/workflow/forms/connect-account-form.tsx
index 9bd498bb59..5083d9d49f 100644
--- a/ui/components/providers/workflow/forms/connect-account-form.tsx
+++ b/ui/components/providers/workflow/forms/connect-account-form.tsx
@@ -7,14 +7,14 @@ import { useEffect, useState } from "react";
import { useForm } from "react-hook-form";
import * as z from "zod";
+import { addProvider } from "@/actions/providers/providers";
+import { RadioGroupProvider } from "@/components/providers/radio-group-provider";
+import { ProviderTitleDocs } from "@/components/providers/workflow/provider-title-docs";
import { useToast } from "@/components/ui";
import { CustomButton, CustomInput } from "@/components/ui/custom";
import { Form } from "@/components/ui/form";
+import { addProviderFormSchema, ApiError } from "@/types";
-import { addProvider } from "../../../../actions/providers/providers";
-import { addProviderFormSchema, ApiError } from "../../../../types";
-import { RadioGroupProvider } from "../../radio-group-provider";
-import { ProviderTitleDocs } from "../provider-title-docs";
export type FormValues = z.infer