From 31ced1c0e142a0bb01786ca569241a9734cf2492 Mon Sep 17 00:00:00 2001 From: Li Yi Yu Date: Wed, 18 Oct 2023 11:17:32 -0400 Subject: [PATCH] chore(surveys): add surveys opt in to onboarding ingestion (#18045) --- .../ingestion/panels/SuperpowersPanel.tsx | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/frontend/src/scenes/ingestion/panels/SuperpowersPanel.tsx b/frontend/src/scenes/ingestion/panels/SuperpowersPanel.tsx index 5ec5cad19e87e0..faabd060340b85 100644 --- a/frontend/src/scenes/ingestion/panels/SuperpowersPanel.tsx +++ b/frontend/src/scenes/ingestion/panels/SuperpowersPanel.tsx @@ -12,6 +12,7 @@ export function SuperpowersPanel(): JSX.Element { const { completeOnboarding } = useActions(ingestionLogic) const [sessionRecordingsChecked, setSessionRecordingsChecked] = useState(true) const [autocaptureChecked, setAutocaptureChecked] = useState(true) + const [surveysChecked, setSurveysChecked] = useState(true) return ( +
+ { + setSurveysChecked(checked) + }} + label="Get qualitative feedback from your users" + fullWidth={true} + labelClassName={'text-base font-semibold'} + checked={surveysChecked} + /> +

+ Collect feedback from your users directly in your product.{' '} + + Learn more + {' '} + about Surveys. +

+
) }