Code Node does not run current code, returns old code output

In your code node you do return $input.all();
which represents previous input and you are returning it as it is.
you need to do some thing with data and return new data.
you can refer to this community topic to better understand code node.