LiveView File Uploads issue when the upload form is in a LiveComponent - Solved

Nevermind. I ended up figuring it up. I removed my allow_upload/3 call from the component, and added an update/2 call like this:

def update(%{uploads: uploads}, socket) do
    socket = assign(socket, :uploads, uploads)
    {:ok, socket}
  end

That got it working! Loving the new LiveView uploader!