Your problem is far more likely because you’re calling the move from within OnTriggerEnter.
Also, you’re mixing and matching physics / collision stuff (OnTriggerEnter, which implies Rigidbody, which IS Physics) with CharacterController.
Pick one. They don’t play well together and were never meant to play well together.
If you pick physics, then you must NEVER manipulate the transform directly because you bypass physics.
With Physics (or Physics2D), never manipulate the Transform directly. If you manipulate the Transform directly, you are bypassing the physics system and you can reasonably expect glitching and missed collisions and other physics mayhem.
Always use the .MovePosition() and .MoveRotation() methods on the Rigidbody (or Rigidbody2D) instance in order to move or rotate things. Doing this keeps the physics system informed about what is going on.
With a wheel collider, use the motor or brake torque to effect motion.
If you just need a handy starter character controller, here is a super-basic starter prototype FPS based on Character Controller (BasicFPCC):
That one has run, walk, jump, slide, crouch… it’s crazy-nutty!!