Does UnsafeViewBackward cause backprop issues?

In my net I am getting a tensor like this after doing a my_tensor.flatten():

grad_fn=<UnsafeViewBackward>

Does this effect how the gradient is propagated or will everything work just fine?

It will work fine and should not create any issues regarding backpropagation or gradient calculation.