2
0

🐛 (googleAnalytics) Fix output validation when using variable as event value

This commit is contained in:
Baptiste Arnaud
2023-05-03 18:09:25 -04:00
parent f2d31745ca
commit 65c6f66a5c
4 changed files with 27 additions and 24 deletions

View File

@@ -10,7 +10,9 @@ export const executeGoogleAnalyticsBlock = (
outgoingEdgeId: block.outgoingEdgeId,
clientSideActions: [
{
googleAnalytics: deepParseVariables(variables)(block.options),
googleAnalytics: deepParseVariables(variables, {
guessCorrectType: true,
})(block.options),
lastBubbleBlockId,
},
],