diff --git a/apps/web/app/(app)/environments/[environmentId]/surveys/[surveyId]/edit/components/LogicEditor.tsx b/apps/web/app/(app)/environments/[environmentId]/surveys/[surveyId]/edit/components/LogicEditor.tsx index fd01ac1c3e..cef1a0ff8f 100644 --- a/apps/web/app/(app)/environments/[environmentId]/surveys/[surveyId]/edit/components/LogicEditor.tsx +++ b/apps/web/app/(app)/environments/[environmentId]/surveys/[surveyId]/edit/components/LogicEditor.tsx @@ -267,16 +267,18 @@ export default function LogicEditor({ {logic.condition && logicConditions[logic.condition].values != null && ( -
+
{!logicConditions[logic.condition].multiSelect ? ( deleteLogic(logicIdx)} />
diff --git a/packages/ui/Select/index.tsx b/packages/ui/Select/index.tsx index 0e39aa46da..3d7fb0d5fc 100644 --- a/packages/ui/Select/index.tsx +++ b/packages/ui/Select/index.tsx @@ -2,7 +2,7 @@ import * as React from "react"; import * as SelectPrimitive from "@radix-ui/react-select"; -import { /* Check, */ ChevronDown } from "lucide-react"; +import { ChevronDown } from "lucide-react"; import { cn } from "@formbricks/lib/cn"; @@ -70,12 +70,6 @@ const SelectItem: React.ComponentType = React.f className )} {...props}> - {/* - - - - */} - {children} ));