How can move model and Boxhelper with Transform Controls

Hello, can anyone help me with the problem that I have, I want to move my model with box helper with Transform Controls

as shown in photo but also I have a problem where my model Model Center position is not me matching with Scene center position but I fix this with bounding box but still my transform controls arrow is far from the center

Can you please share the model in this thread? I guess when importing the model into the three.js the same problem should occur.

this is what I have I am loading from URL
after loading I am doing this
var box3 = new THREE.Box3().setFromObject(object);
var shift = box3.getCenter();
object.position.sub(shift);
scene.add(object);
and after I attaching transform controls but arrows are far from center,
this is what i have now