From d2c703ef60125bbf3cf988a37c06df4e0c688762 Mon Sep 17 00:00:00 2001 From: Anshuman Pandey <54475686+pandeymangg@users.noreply.github.com> Date: Tue, 5 Dec 2023 16:16:17 +0530 Subject: [PATCH] fix: adds default values for overlay and click outside close (#1740) --- .../surveys/[surveyId]/edit/components/StylingCard.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/web/app/(app)/environments/[environmentId]/surveys/[surveyId]/edit/components/StylingCard.tsx b/apps/web/app/(app)/environments/[environmentId]/surveys/[surveyId]/edit/components/StylingCard.tsx index 251825cfd4..aa4dfedb0b 100644 --- a/apps/web/app/(app)/environments/[environmentId]/surveys/[surveyId]/edit/components/StylingCard.tsx +++ b/apps/web/app/(app)/environments/[environmentId]/surveys/[surveyId]/edit/components/StylingCard.tsx @@ -38,6 +38,8 @@ export default function StylingCard({ localSurvey, setLocalSurvey, colours }: St productOverwrites: { ...localSurvey.productOverwrites, placement: !!placement ? null : "bottomRight", + clickOutsideClose: false, + darkOverlay: false, }, }); };