Hi @nitruc
This is a normal WP behaviour – to turn all new lines into paragraph tags.
To remove this, you can try loading the value without any formatting.
You can do this by providing a ‘false’ for the format parameter in the get_field / the_field funcions like so:
the_field('wysiwyg_field', false, false);
Hope that helps.
Thanks
E