mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-02 20:01:07 -05:00
fix: build error
This commit is contained in:
+6
-5
@@ -118,11 +118,12 @@ export const AddIntegrationModal = ({
|
||||
}))
|
||||
: [];
|
||||
|
||||
const variables = selectedSurvey?.variables.map((variable) => ({
|
||||
id: variable.id,
|
||||
name: variable.name,
|
||||
type: TSurveyQuestionTypeEnum.OpenText,
|
||||
}));
|
||||
const variables =
|
||||
selectedSurvey?.variables.map((variable) => ({
|
||||
id: variable.id,
|
||||
name: variable.name,
|
||||
type: TSurveyQuestionTypeEnum.OpenText,
|
||||
})) || [];
|
||||
|
||||
const hiddenFields = selectedSurvey?.hiddenFields.enabled
|
||||
? selectedSurvey?.hiddenFields.fieldIds?.map((fId) => ({
|
||||
|
||||
Reference in New Issue
Block a user