diff --git a/apps/web/app/environments/[environmentId]/surveys/SurveyList.tsx b/apps/web/app/environments/[environmentId]/surveys/SurveyList.tsx index b18ed25ca6..ee3737265b 100644 --- a/apps/web/app/environments/[environmentId]/surveys/SurveyList.tsx +++ b/apps/web/app/environments/[environmentId]/surveys/SurveyList.tsx @@ -9,10 +9,9 @@ import { DropdownMenuTrigger, } from "@/components/shared/DropdownMenu"; import LoadingSpinner from "@/components/shared/LoadingSpinner"; -import Modal from "@/components/shared/Modal"; import SurveyStatusIndicator from "@/components/shared/SurveyStatusIndicator"; import { deleteSurvey, useSurveys } from "@/lib/surveys/surveys"; -import { Button, ErrorComponent, ResponsiveVideo } from "@formbricks/ui"; +import { ErrorComponent } from "@formbricks/ui"; import { PlusIcon } from "@heroicons/react/24/outline"; import { EllipsisHorizontalIcon, PencilSquareIcon, TrashIcon } from "@heroicons/react/24/solid"; import Link from "next/link"; @@ -25,7 +24,6 @@ export default function SurveysList({ environmentId }) { const { surveys, mutateSurveys, isLoadingSurveys, isErrorSurveys } = useSurveys(environmentId); const [isDeleteDialogOpen, setDeleteDialogOpen] = useState(false); - const [isVideoDialogOpen, setVideoDialogOpen] = useState(false); const [activeSurvey, setActiveSurvey] = useState("" as any); const [activeSurveyIdx, setActiveSurveyIdx] = useState("" as any); @@ -69,7 +67,7 @@ export default function SurveysList({ environmentId }) { - {surveys.length === 0 && ( + {/* {surveys.length === 0 && (
Kinda lost?