diff --git a/packages/app-store/zapier/pages/v2/setup/index.tsx b/packages/app-store/zapier/pages/v2/setup/index.tsx index 8a838f62b6..953ef18e53 100644 --- a/packages/app-store/zapier/pages/v2/setup/index.tsx +++ b/packages/app-store/zapier/pages/v2/setup/index.tsx @@ -1,4 +1,3 @@ -import { ClipboardCopyIcon } from "@heroicons/react/solid"; import { Trans } from "next-i18next"; import Link from "next/link"; import { useState } from "react"; @@ -6,6 +5,7 @@ import { Toaster } from "react-hot-toast"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { trpc } from "@calcom/trpc/react"; +import { ClipboardCopyIcon } from "@calcom/ui/Icon"; import { Button, Loader, showToast, Tooltip } from "@calcom/ui/v2"; export interface IZapierSetupProps { @@ -64,16 +64,18 @@ export default function ZapierSetup(props: IZapierSetupProps) { ) : ( <>
+ {newApiKey}
+
+
+
{apiKey}
@@ -78,7 +78,7 @@ export default function ApiKeyDialogForm({
showToast(t("api_key_copied"), "success");
}}
type="button"
- className=" my-2 px-4 text-base">
+ className="rounded-l-none py-[19px] text-base ">
{t("copy")}
@@ -112,7 +112,7 @@ export default function ApiKeyDialogForm({
}
}}
className="space-y-4">
-
+
{defaultValues ? t("edit_api_key") : t("create_api_key")}