Update current user not working as expected

Ok, so I’m working through the logic of a signup authentication process with Weweb and Xano. I basically have it working but I’m stumped in one area. The workflow is as follows.

  1. Xano Signup User Auth (Name, Email, Password). This works with no problem.
  2. Xano Post (This posts a company name to a different table)
  3. Xano Patch the User with the ID from the Company Table to a field called Company ID (This actually works to a degree. It calls the ID created from the previous step)

My issue is patching the current user with the company id. It will always default to the first item in the table. I didn’t understand why until I noticed in every instance of retrieving the usser ID there is a dropdown with a number associated with it. So I have to select a user. Even on trying to retrieve the User ID from step 1 it has this dropdown selection. How do I get the actual current user without this dropdown? The Xano signup automatically authenticates the user as soon as step one completes which is something I’ll have to address next, but why do I always have a specific dropdown to select and there’s no other option? What am I missing?