⚡ Remove empty strings from variable parsing when possible
This commit is contained in:
@@ -17,8 +17,9 @@ export const updateRow = async (
|
||||
}: { outgoingEdgeId?: string; options: GoogleSheetsUpdateRowOptions }
|
||||
): Promise<ExecuteIntegrationResponse> => {
|
||||
const { variables } = state.typebotsQueue[0].typebot
|
||||
const { sheetId, filter, ...parsedOptions } =
|
||||
deepParseVariables(variables)(options)
|
||||
const { sheetId, filter, ...parsedOptions } = deepParseVariables(variables, {
|
||||
removeEmptyStrings: true,
|
||||
})(options)
|
||||
|
||||
const referenceCell =
|
||||
'referenceCell' in parsedOptions && parsedOptions.referenceCell
|
||||
|
||||
Reference in New Issue
Block a user