Hi, I have created a flow that extracts information from an http API, with that information I create a payload and I want to write the payload in a CSV.
The flow works correctly, but in the CSV it inserts a blank line between each line created in the CSV.
How can I configure the CSV so that it does not create this line break?
As @dceejay said, in the File node make sure you have not ticked Add newline to each payload. The strings you are writing already include new lines so you don't want another.
If Colin's suggestion does not resolve the issue, you might try changing your csv node config to use Unix style newlines \n (currently you are using Windows style newlines \r\n) -- those two characters at the end of each line could be causing the extra blank lines.
it seems I needed some vacation days to see what I had in front of me, indeed @dceejay is right, I had the option "Add newline to each payload" in the File node activated, I'm sorry I didn't see it before.