diff --git a/ui/components/providers/add-provider-button.tsx b/ui/components/providers/add-provider-button.tsx
index 7846616357..223d3a390d 100644
--- a/ui/components/providers/add-provider-button.tsx
+++ b/ui/components/providers/add-provider-button.tsx
@@ -1,18 +1,22 @@
"use client";
-import Link from "next/link";
+import { useState } from "react";
+import { ProviderWizardModal } from "@/components/providers/wizard";
import { Button } from "@/components/shadcn";
import { AddIcon } from "../icons";
export const AddProviderButton = () => {
+ const [open, setOpen] = useState(false);
+
return (
-
+
+ Provider details are missing. Go back and select a provider. +
++ Select a credential type to continue. +
++ Continue with the action button to go to scans. +
++ {errorMessage || "Unable to load provider details."} +
+- {getProviderHelpText(providerType as string).text} -
-- No cloud providers have been configured. Start by setting up a - cloud provider. -
-+ No cloud providers have been configured. Start by setting up a + cloud provider. +
+