diff --git a/components/form-builder/app/navigation/LeftNavigation.tsx b/components/form-builder/app/navigation/LeftNavigation.tsx
index 97dcbd2832..ed634d6204 100644
--- a/components/form-builder/app/navigation/LeftNavigation.tsx
+++ b/components/form-builder/app/navigation/LeftNavigation.tsx
@@ -2,7 +2,6 @@ import React from "react";
import { useTranslation } from "next-i18next";
import { DesignIcon, PreviewIcon, PublishIcon, GearIcon, MessageIcon } from "../../icons";
import { useTemplateContext } from "@components/form-builder/hooks";
-import { SaveButton } from "../shared/SaveButton";
import { useTemplateStore } from "../../store/useTemplateStore";
import { useSession } from "next-auth/react";
import { useActivePathname, cleanPath } from "../../hooks/useActivePathname";
@@ -67,11 +66,6 @@ export const LeftNavigation = () => {
{t("responsesNavLabel")}
- {!isPublished && activePathname === "/form-builder/edit" && (
-
-
-
- )}
);
diff --git a/components/form-builder/app/shared/DownloadFileButton.tsx b/components/form-builder/app/shared/DownloadFileButton.tsx
index d96c215952..937b6e8f7b 100644
--- a/components/form-builder/app/shared/DownloadFileButton.tsx
+++ b/components/form-builder/app/shared/DownloadFileButton.tsx
@@ -53,12 +53,14 @@ export const DownloadFileButton = ({
showInfo = true,
buttonText,
autoShowDialog = false,
+ theme = "secondary",
}: {
className?: string;
onClick?: any; // eslint-disable-line @typescript-eslint/no-explicit-any
showInfo?: boolean;
buttonText?: string;
autoShowDialog?: boolean;
+ theme?: "primary" | "secondary";
}) => {
const { t, i18n } = useTranslation("form-builder");
const { getSchema, form, name } = useTemplateStore((s) => ({
@@ -114,7 +116,7 @@ export const DownloadFileButton = ({