V3 does not set the correct temperature using Cura, Here's how to fix it

Cura will work (for the most part) with the V3, (hopefully a real profile is in the next update), but it does not set the temperature correctly - it always tries to print at 240C.
if you look in the printer Machine Settings, in the Start G-Code box it will show
M140 S0
M104 S0
START_PRINT EXTRUDER_TEMP=[material_print_temperature_layer_0]
BED_TEMP=[material_bed_temperature_layer_0]

the error is that it need to use ‘{}’ not ‘’ so it should look like this:

M140 S0
M104 S0
START_PRINT EXTRUDER_TEMP={material_print_temperature_layer_0}
BED_TEMP={material_bed_temperature_layer_0}

it will now set the temperature correctly to whatever you have put into the profile.